blob: c5f92b42d205b44ac97bad4bc80ed6aa1dfce4d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/**
* @file ctype.h
*
* @author Freya Murphy <freya@freyacat.org>
*
* C type libaray functions
*/
#ifndef _CTYPE_H
#define _CTYPE_H
/**
* @returns 1 if c is a space
*/
extern int isspace(int c);
/**
* @returns 1 if c is a digit (0 - 9)
*/
extern int isdigit(int c);
#endif /* ctype.h */
|