X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;ds=sidebyside;f=includes%2Fctype.h;fp=includes%2Fctype.h;h=2c8071c5da3b39eb08f1ba72d2b8d3eacc98345e;hb=5bcc00c1b85feff1996e3f34a1a9ebf3b624161e;hp=0000000000000000000000000000000000000000;hpb=68525aefa7b7b1f2f769e287e1f2f3a4585005ff;p=pdclib diff --git a/includes/ctype.h b/includes/ctype.h new file mode 100644 index 0000000..2c8071c --- /dev/null +++ b/includes/ctype.h @@ -0,0 +1,23 @@ +/* $Id$ */ + +/* 7.4 Character handling + + This file is part of the Public Domain C Library (PDCLib). + Permission is granted to use, modify, and / or redistribute at will. +*/ + +#ifndef _PDCLIB_CTYPE_H +#define _PDCLIB_CTYPE_H _PDCLIB_CTYPE_H + +/* ------------------------------------------------------------------------- */ +/* THIS IS A STUB - THIS IS A STUB - THIS IS A STUB - THIS IS A STUB */ +/* ------------------------------------------------------------------------- */ +/* This implements two functions that are required by / */ +/* for the C locale only. Will be replaced in v0.6 by something compliant. */ +/* ------------------------------------------------------------------------- */ + +int tolower( int c ); +int isspace( int c ); + +#endif +