This repository has been archived on 2024-06-25. You can view files and clone it, but cannot push or open issues or pull requests.
rockOS/libc/include/ctype.h

15 lines
130 B
C

#ifndef _CTYPE_H
#define _CTYPE_H
#ifdef __cplusplus
extern "C" {
#endif
int isdigit(int);
#ifdef __cplusplus
}
#endif
#endif