mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-09-24 15:54:12 +00:00
11 lines
229 B
C
11 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
|