Files
2023-06-25 16:52:48 -04:00

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