mirror of
https://github.com/kenshineto/kern.git
synced 2025-04-21 20:57:25 +00:00
22 lines
301 B
C
22 lines
301 B
C
/**
|
|
* @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 */
|