blob: 830fb7830bd3a7ea3b323559dd67d0f7dd6c57a7 [file] [log] [blame]
#ifndef LLVM_LIBCXX_SUPPORT_ANDROID_CTYPE_H
#define LLVM_LIBCXX_SUPPORT_ANDROID_CTYPE_H
#include_next <ctype.h>
#include <xlocale.h>
extern "C" {
# define __exctype_l(name) extern int name (int, locale_t)
__exctype_l (isalnum_l);
__exctype_l (isalpha_l);
__exctype_l (iscntrl_l);
__exctype_l (isdigit_l);
__exctype_l (islower_l);
__exctype_l (isgraph_l);
__exctype_l (isprint_l);
__exctype_l (ispunct_l);
__exctype_l (isspace_l);
__exctype_l (isupper_l);
__exctype_l (isxdigit_l);
__exctype_l (isblank_l);
int tolower_l(int c, locale_t);
int toupper_l(int c, locale_t);
} // extern "C"
#endif // LLVM_LIBCXX_SUPPORT_ANDROID_CTYPE_H