Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/ctype/local.h')
-rw-r--r--newlib/libc/ctype/local.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/newlib/libc/ctype/local.h b/newlib/libc/ctype/local.h
deleted file mode 100644
index b1eca42e6..000000000
--- a/newlib/libc/ctype/local.h
+++ /dev/null
@@ -1,32 +0,0 @@
-/* wctrans constants */
-
-#include <_ansi.h>
-
-/* valid values for wctrans_t */
-#define WCT_TOLOWER 1
-#define WCT_TOUPPER 2
-
-/* valid values for wctype_t */
-#define WC_ALNUM 1
-#define WC_ALPHA 2
-#define WC_BLANK 3
-#define WC_CNTRL 4
-#define WC_DIGIT 5
-#define WC_GRAPH 6
-#define WC_LOWER 7
-#define WC_PRINT 8
-#define WC_PUNCT 9
-#define WC_SPACE 10
-#define WC_UPPER 11
-#define WC_XDIGIT 12
-
-extern char __lc_ctype[12];
-
-/* Japanese encoding types supported */
-#define JP_JIS 1
-#define JP_SJIS 2
-#define JP_EUCJP 3
-
-/* internal function to translate JP to Unicode */
-wint_t _EXFUN (__jp2uc, (wint_t, int));
-