]> pd.if.org Git - pdclib/blob - includes/ctype.h
Getting closer to scan().
[pdclib] / includes / ctype.h
1 /* $Id$ */
2
3 /* 7.4 Character handling <ctype.h>
4
5    This file is part of the Public Domain C Library (PDCLib).
6    Permission is granted to use, modify, and / or redistribute at will.
7 */
8
9 #ifndef _PDCLIB_CTYPE_H
10 #define _PDCLIB_CTYPE_H _PDCLIB_CTYPE_H
11
12 /* ------------------------------------------------------------------------- */
13 /*  THIS IS A STUB  -  THIS IS A STUB  -  THIS IS A STUB  -  THIS IS A STUB  */
14 /* ------------------------------------------------------------------------- */
15 /* This implements two functions that are required by <stdlib.h> / <stdio.h> */
16 /* for the C locale only. Will be replaced in v0.6 by something compliant.   */
17 /* ------------------------------------------------------------------------- */
18
19 int tolower( int c );
20 int isspace( int c );
21
22 #endif
23