kern/include/ctype.h
2025-04-03 12:29:48 -04:00

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 */