Add licence
[ilari-esolangs.git] / sane-ctype.h
blobeeb7db19cfd3358cec7102f3f80552362a1c1444
1 #ifndef _sane_ctype__h__included__
2 #define _sane_ctype__h__included__
4 /******************************************************************************
5 *
6 * DESCRIPTION:
7 * Is the character whitespace according to ASCII?
9 * PARAMETERS:
10 * ch The character.
12 * RETURN VALUE:
13 * 1 if character is whitespace, 0 otherwise.
15 *****************************************************************************/
16 unsigned sane_isspace(unsigned char ch);
18 /******************************************************************************
20 * DESCRIPTION:
21 * Is the character line change according to ASCII?
23 * PARAMETERS:
24 * ch The character.
26 * RETURN VALUE:
27 * 1 if character is line change character, 0 otherwise.
29 *****************************************************************************/
30 unsigned sane_isnewline(unsigned char ch);
32 #endif