os/libc/ctype.h

16 lines
211 B
C
Raw Normal View History

2020-07-26 15:38:29 -05:00
/**
* \file
*/
#ifndef CTYPE_H
#define CTYPE_H
2020-07-26 15:38:29 -05:00
/**
* Checks whether a character is an ascii digit
* \param c The character to check
* \return 0 if the character is a digit
*/
int isdigit(int c);
#endif