winamp/Src/Wasabi/bfc/std_string.h

12 lines
229 B
C
Raw Normal View History

2024-09-24 12:54:57 +00:00
#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