12 lines
229 B
C
12 lines
229 B
C
|
#ifndef _STD_STRING_H
|
||
|
#define _STD_STRING_H
|
||
|
|
||
|
#include <bfc/platform/platform.h>
|
||
|
#ifdef __cplusplus
|
||
|
bool ISALPHA(wchar_t alpha);
|
||
|
bool ISDIGIT(wchar_t digit);
|
||
|
bool ISSPACE(wchar_t space);
|
||
|
bool ISPUNCT(wchar_t punct);
|
||
|
#endif
|
||
|
#endif
|