mirror of
https://github.com/encounter/ogws.git
synced 2026-03-30 11:33:37 -07:00
13 lines
173 B
Plaintext
13 lines
173 B
Plaintext
#ifndef MSL_CPP_CCTYPE_H
|
|
#define MSL_CPP_CCTYPE_H
|
|
#include <ctype.h>
|
|
#ifdef __cplusplus
|
|
|
|
namespace std {
|
|
using ::tolower;
|
|
using ::toupper;
|
|
} // namespace std
|
|
|
|
#endif
|
|
#endif
|