summaryrefslogtreecommitdiff
path: root/libc/misc/wctype
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2006-02-13 08:14:12 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2006-02-13 08:14:12 +0000
commit42c9f525369ba06742d53d7a89ad00153b317de6 (patch)
tree384ccc4bd211f66950ae1b72bf7b3188c58c4d56 /libc/misc/wctype
parent12c4a2b9298f6bb4320509b8bb21ba0aa2d4392d (diff)
Add files for IMA. Yes, I know it's a hack and no, I won't split the affected files
Diffstat (limited to 'libc/misc/wctype')
-rw-r--r--libc/misc/wctype/iswalnum.c8
-rw-r--r--libc/misc/wctype/iswalnum_l.c9
-rw-r--r--libc/misc/wctype/iswalpha.c8
-rw-r--r--libc/misc/wctype/iswalpha_l.c9
-rw-r--r--libc/misc/wctype/iswblank.c8
-rw-r--r--libc/misc/wctype/iswblank_l.c9
-rw-r--r--libc/misc/wctype/iswcntrl.c8
-rw-r--r--libc/misc/wctype/iswcntrl_l.c9
-rw-r--r--libc/misc/wctype/iswctype.c8
-rw-r--r--libc/misc/wctype/iswctype_l.c9
-rw-r--r--libc/misc/wctype/iswdigit.c8
-rw-r--r--libc/misc/wctype/iswdigit_l.c9
-rw-r--r--libc/misc/wctype/iswgraph.c8
-rw-r--r--libc/misc/wctype/iswgraph_l.c9
-rw-r--r--libc/misc/wctype/iswlower.c8
-rw-r--r--libc/misc/wctype/iswlower_l.c9
-rw-r--r--libc/misc/wctype/iswprint.c8
-rw-r--r--libc/misc/wctype/iswprint_l.c9
-rw-r--r--libc/misc/wctype/iswpunct.c8
-rw-r--r--libc/misc/wctype/iswpunct_l.c9
-rw-r--r--libc/misc/wctype/iswspace.c8
-rw-r--r--libc/misc/wctype/iswspace_l.c9
-rw-r--r--libc/misc/wctype/iswupper.c8
-rw-r--r--libc/misc/wctype/iswupper_l.c9
-rw-r--r--libc/misc/wctype/iswxdigit.c8
-rw-r--r--libc/misc/wctype/iswxdigit_l.c9
-rw-r--r--libc/misc/wctype/towctrans.c8
-rw-r--r--libc/misc/wctype/towctrans_l.c9
-rw-r--r--libc/misc/wctype/towlower.c8
-rw-r--r--libc/misc/wctype/towlower_l.c9
-rw-r--r--libc/misc/wctype/towupper.c8
-rw-r--r--libc/misc/wctype/towupper_l.c9
-rw-r--r--libc/misc/wctype/wctrans.c8
-rw-r--r--libc/misc/wctype/wctrans_l.c9
-rw-r--r--libc/misc/wctype/wctype.c8
-rw-r--r--libc/misc/wctype/wctype_l.c9
36 files changed, 306 insertions, 0 deletions
diff --git a/libc/misc/wctype/iswalnum.c b/libc/misc/wctype/iswalnum.c
new file mode 100644
index 000000000..a85a03dc8
--- /dev/null
+++ b/libc/misc/wctype/iswalnum.c
@@ -0,0 +1,8 @@
+/*
+ * Copyright (C) 2002-2006 Manuel Novoa III <mjn3@uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#define L_iswalnum
+#include "_wctype.c"
diff --git a/libc/misc/wctype/iswalnum_l.c b/libc/misc/wctype/iswalnum_l.c
new file mode 100644
index 000000000..6e3cd7770
--- /dev/null
+++ b/libc/misc/wctype/iswalnum_l.c
@@ -0,0 +1,9 @@
+/*
+ * Copyright (C) 2002-2006 Manuel Novoa III <mjn3@uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#define L_iswalnum_l
+#define __UCLIBC_DO_XLOCALE
+#include "_wctype.c"
diff --git a/libc/misc/wctype/iswalpha.c b/libc/misc/wctype/iswalpha.c
new file mode 100644
index 000000000..6b829eb82
--- /dev/null
+++ b/libc/misc/wctype/iswalpha.c
@@ -0,0 +1,8 @@
+/*
+ * Copyright (C) 2002-2006 Manuel Novoa III <mjn3@uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#define L_iswalpha
+#include "_wctype.c"
diff --git a/libc/misc/wctype/iswalpha_l.c b/libc/misc/wctype/iswalpha_l.c
new file mode 100644
index 000000000..79b11cf72
--- /dev/null
+++ b/libc/misc/wctype/iswalpha_l.c
@@ -0,0 +1,9 @@
+/*
+ * Copyright (C) 2002-2006 Manuel Novoa III <mjn3@uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#define L_iswalpha_l
+#define __UCLIBC_DO_XLOCALE
+#include "_wctype.c"
diff --git a/libc/misc/wctype/iswblank.c b/libc/misc/wctype/iswblank.c
new file mode 100644
index 000000000..67862d59e
--- /dev/null
+++ b/libc/misc/wctype/iswblank.c
@@ -0,0 +1,8 @@
+/*
+ * Copyright (C) 2002-2006 Manuel Novoa III <mjn3@uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#define L_iswblank
+#include "_wctype.c"
diff --git a/libc/misc/wctype/iswblank_l.c b/libc/misc/wctype/iswblank_l.c
new file mode 100644
index 000000000..4c5709cf8
--- /dev/null
+++ b/libc/misc/wctype/iswblank_l.c
@@ -0,0 +1,9 @@
+/*
+ * Copyright (C) 2002-2006 Manuel Novoa III <mjn3@uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#define L_iswblank_l
+#define __UCLIBC_DO_XLOCALE
+#include "_wctype.c"
diff --git a/libc/misc/wctype/iswcntrl.c b/libc/misc/wctype/iswcntrl.c
new file mode 100644
index 000000000..50d72b46f
--- /dev/null
+++ b/libc/misc/wctype/iswcntrl.c
@@ -0,0 +1,8 @@
+/*
+ * Copyright (C) 2002-2006 Manuel Novoa III <mjn3@uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#define L_iswcntrl
+#include "_wctype.c"
diff --git a/libc/misc/wctype/iswcntrl_l.c b/libc/misc/wctype/iswcntrl_l.c
new file mode 100644
index 000000000..2fe64d744
--- /dev/null
+++ b/libc/misc/wctype/iswcntrl_l.c
@@ -0,0 +1,9 @@
+/*
+ * Copyright (C) 2002-2006 Manuel Novoa III <mjn3@uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#define L_iswcntrl_l
+#define __UCLIBC_DO_XLOCALE
+#include "_wctype.c"
diff --git a/libc/misc/wctype/iswctype.c b/libc/misc/wctype/iswctype.c
new file mode 100644
index 000000000..777d41048
--- /dev/null
+++ b/libc/misc/wctype/iswctype.c
@@ -0,0 +1,8 @@
+/*
+ * Copyright (C) 2002-2006 Manuel Novoa III <mjn3@uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#define L_iswctype
+#include "_wctype.c"
diff --git a/libc/misc/wctype/iswctype_l.c b/libc/misc/wctype/iswctype_l.c
new file mode 100644
index 000000000..71bce184e
--- /dev/null
+++ b/libc/misc/wctype/iswctype_l.c
@@ -0,0 +1,9 @@
+/*
+ * Copyright (C) 2002-2006 Manuel Novoa III <mjn3@uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#define L_iswctype_l
+#define __UCLIBC_DO_XLOCALE
+#include "_wctype.c"
diff --git a/libc/misc/wctype/iswdigit.c b/libc/misc/wctype/iswdigit.c
new file mode 100644
index 000000000..b2aa5d00a
--- /dev/null
+++ b/libc/misc/wctype/iswdigit.c
@@ -0,0 +1,8 @@
+/*
+ * Copyright (C) 2002-2006 Manuel Novoa III <mjn3@uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#define L_iswdigit
+#include "_wctype.c"
diff --git a/libc/misc/wctype/iswdigit_l.c b/libc/misc/wctype/iswdigit_l.c
new file mode 100644
index 000000000..4832c9c80
--- /dev/null
+++ b/libc/misc/wctype/iswdigit_l.c
@@ -0,0 +1,9 @@
+/*
+ * Copyright (C) 2002-2006 Manuel Novoa III <mjn3@uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#define L_iswdigit_l
+#define __UCLIBC_DO_XLOCALE
+#include "_wctype.c"
diff --git a/libc/misc/wctype/iswgraph.c b/libc/misc/wctype/iswgraph.c
new file mode 100644
index 000000000..8113054f5
--- /dev/null
+++ b/libc/misc/wctype/iswgraph.c
@@ -0,0 +1,8 @@
+/*
+ * Copyright (C) 2002-2006 Manuel Novoa III <mjn3@uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#define L_iswgraph
+#include "_wctype.c"
diff --git a/libc/misc/wctype/iswgraph_l.c b/libc/misc/wctype/iswgraph_l.c
new file mode 100644
index 000000000..db683156e
--- /dev/null
+++ b/libc/misc/wctype/iswgraph_l.c
@@ -0,0 +1,9 @@
+/*
+ * Copyright (C) 2002-2006 Manuel Novoa III <mjn3@uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#define L_iswgraph_l
+#define __UCLIBC_DO_XLOCALE
+#include "_wctype.c"
diff --git a/libc/misc/wctype/iswlower.c b/libc/misc/wctype/iswlower.c
new file mode 100644
index 000000000..016d8cc8e
--- /dev/null
+++ b/libc/misc/wctype/iswlower.c
@@ -0,0 +1,8 @@
+/*
+ * Copyright (C) 2002-2006 Manuel Novoa III <mjn3@uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#define L_iswlower
+#include "_wctype.c"
diff --git a/libc/misc/wctype/iswlower_l.c b/libc/misc/wctype/iswlower_l.c
new file mode 100644
index 000000000..5b9f82126
--- /dev/null
+++ b/libc/misc/wctype/iswlower_l.c
@@ -0,0 +1,9 @@
+/*
+ * Copyright (C) 2002-2006 Manuel Novoa III <mjn3@uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#define L_iswlower_l
+#define __UCLIBC_DO_XLOCALE
+#include "_wctype.c"
diff --git a/libc/misc/wctype/iswprint.c b/libc/misc/wctype/iswprint.c
new file mode 100644
index 000000000..8e47e88c1
--- /dev/null
+++ b/libc/misc/wctype/iswprint.c
@@ -0,0 +1,8 @@
+/*
+ * Copyright (C) 2002-2006 Manuel Novoa III <mjn3@uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#define L_iswprint
+#include "_wctype.c"
diff --git a/libc/misc/wctype/iswprint_l.c b/libc/misc/wctype/iswprint_l.c
new file mode 100644
index 000000000..148414c49
--- /dev/null
+++ b/libc/misc/wctype/iswprint_l.c
@@ -0,0 +1,9 @@
+/*
+ * Copyright (C) 2002-2006 Manuel Novoa III <mjn3@uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#define L_iswprint_l
+#define __UCLIBC_DO_XLOCALE
+#include "_wctype.c"
diff --git a/libc/misc/wctype/iswpunct.c b/libc/misc/wctype/iswpunct.c
new file mode 100644
index 000000000..1175e1ad6
--- /dev/null
+++ b/libc/misc/wctype/iswpunct.c
@@ -0,0 +1,8 @@
+/*
+ * Copyright (C) 2002-2006 Manuel Novoa III <mjn3@uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#define L_iswpunct
+#include "_wctype.c"
diff --git a/libc/misc/wctype/iswpunct_l.c b/libc/misc/wctype/iswpunct_l.c
new file mode 100644
index 000000000..a6d361650
--- /dev/null
+++ b/libc/misc/wctype/iswpunct_l.c
@@ -0,0 +1,9 @@
+/*
+ * Copyright (C) 2002-2006 Manuel Novoa III <mjn3@uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#define L_iswpunct_l
+#define __UCLIBC_DO_XLOCALE
+#include "_wctype.c"
diff --git a/libc/misc/wctype/iswspace.c b/libc/misc/wctype/iswspace.c
new file mode 100644
index 000000000..603f5cf4a
--- /dev/null
+++ b/libc/misc/wctype/iswspace.c
@@ -0,0 +1,8 @@
+/*
+ * Copyright (C) 2002-2006 Manuel Novoa III <mjn3@uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#define L_iswspace
+#include "_wctype.c"
diff --git a/libc/misc/wctype/iswspace_l.c b/libc/misc/wctype/iswspace_l.c
new file mode 100644
index 000000000..e389f8913
--- /dev/null
+++ b/libc/misc/wctype/iswspace_l.c
@@ -0,0 +1,9 @@
+/*
+ * Copyright (C) 2002-2006 Manuel Novoa III <mjn3@uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#define L_iswspace_l
+#define __UCLIBC_DO_XLOCALE
+#include "_wctype.c"
diff --git a/libc/misc/wctype/iswupper.c b/libc/misc/wctype/iswupper.c
new file mode 100644
index 000000000..4cfdebb1a
--- /dev/null
+++ b/libc/misc/wctype/iswupper.c
@@ -0,0 +1,8 @@
+/*
+ * Copyright (C) 2002-2006 Manuel Novoa III <mjn3@uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#define L_iswupper
+#include "_wctype.c"
diff --git a/libc/misc/wctype/iswupper_l.c b/libc/misc/wctype/iswupper_l.c
new file mode 100644
index 000000000..359aef984
--- /dev/null
+++ b/libc/misc/wctype/iswupper_l.c
@@ -0,0 +1,9 @@
+/*
+ * Copyright (C) 2002-2006 Manuel Novoa III <mjn3@uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#define L_iswupper_l
+#define __UCLIBC_DO_XLOCALE
+#include "_wctype.c"
diff --git a/libc/misc/wctype/iswxdigit.c b/libc/misc/wctype/iswxdigit.c
new file mode 100644
index 000000000..568f253fd
--- /dev/null
+++ b/libc/misc/wctype/iswxdigit.c
@@ -0,0 +1,8 @@
+/*
+ * Copyright (C) 2002-2006 Manuel Novoa III <mjn3@uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#define L_iswxdigit
+#include "_wctype.c"
diff --git a/libc/misc/wctype/iswxdigit_l.c b/libc/misc/wctype/iswxdigit_l.c
new file mode 100644
index 000000000..1d543abbd
--- /dev/null
+++ b/libc/misc/wctype/iswxdigit_l.c
@@ -0,0 +1,9 @@
+/*
+ * Copyright (C) 2002-2006 Manuel Novoa III <mjn3@uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#define L_iswxdigit_l
+#define __UCLIBC_DO_XLOCALE
+#include "_wctype.c"
diff --git a/libc/misc/wctype/towctrans.c b/libc/misc/wctype/towctrans.c
new file mode 100644
index 000000000..9ad0468ff
--- /dev/null
+++ b/libc/misc/wctype/towctrans.c
@@ -0,0 +1,8 @@
+/*
+ * Copyright (C) 2002-2006 Manuel Novoa III <mjn3@uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#define L_towctrans
+#include "_wctype.c"
diff --git a/libc/misc/wctype/towctrans_l.c b/libc/misc/wctype/towctrans_l.c
new file mode 100644
index 000000000..e179b50fe
--- /dev/null
+++ b/libc/misc/wctype/towctrans_l.c
@@ -0,0 +1,9 @@
+/*
+ * Copyright (C) 2002-2006 Manuel Novoa III <mjn3@uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#define L_towctrans_l
+#define __UCLIBC_DO_XLOCALE
+#include "_wctype.c"
diff --git a/libc/misc/wctype/towlower.c b/libc/misc/wctype/towlower.c
new file mode 100644
index 000000000..dffbff3d6
--- /dev/null
+++ b/libc/misc/wctype/towlower.c
@@ -0,0 +1,8 @@
+/*
+ * Copyright (C) 2002-2006 Manuel Novoa III <mjn3@uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#define L_towlower
+#include "_wctype.c"
diff --git a/libc/misc/wctype/towlower_l.c b/libc/misc/wctype/towlower_l.c
new file mode 100644
index 000000000..f1aa7e6ee
--- /dev/null
+++ b/libc/misc/wctype/towlower_l.c
@@ -0,0 +1,9 @@
+/*
+ * Copyright (C) 2002-2006 Manuel Novoa III <mjn3@uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#define L_towlower_l
+#define __UCLIBC_DO_XLOCALE
+#include "_wctype.c"
diff --git a/libc/misc/wctype/towupper.c b/libc/misc/wctype/towupper.c
new file mode 100644
index 000000000..1dab8fed0
--- /dev/null
+++ b/libc/misc/wctype/towupper.c
@@ -0,0 +1,8 @@
+/*
+ * Copyright (C) 2002-2006 Manuel Novoa III <mjn3@uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#define L_towupper
+#include "_wctype.c"
diff --git a/libc/misc/wctype/towupper_l.c b/libc/misc/wctype/towupper_l.c
new file mode 100644
index 000000000..cf05d5c87
--- /dev/null
+++ b/libc/misc/wctype/towupper_l.c
@@ -0,0 +1,9 @@
+/*
+ * Copyright (C) 2002-2006 Manuel Novoa III <mjn3@uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#define L_towupper_l
+#define __UCLIBC_DO_XLOCALE
+#include "_wctype.c"
diff --git a/libc/misc/wctype/wctrans.c b/libc/misc/wctype/wctrans.c
new file mode 100644
index 000000000..f99d9cd9d
--- /dev/null
+++ b/libc/misc/wctype/wctrans.c
@@ -0,0 +1,8 @@
+/*
+ * Copyright (C) 2002-2006 Manuel Novoa III <mjn3@uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#define L_wctrans
+#include "_wctype.c"
diff --git a/libc/misc/wctype/wctrans_l.c b/libc/misc/wctype/wctrans_l.c
new file mode 100644
index 000000000..79854c2d1
--- /dev/null
+++ b/libc/misc/wctype/wctrans_l.c
@@ -0,0 +1,9 @@
+/*
+ * Copyright (C) 2002-2006 Manuel Novoa III <mjn3@uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#define L_wctrans_l
+#define __UCLIBC_DO_XLOCALE
+#include "_wctype.c"
diff --git a/libc/misc/wctype/wctype.c b/libc/misc/wctype/wctype.c
new file mode 100644
index 000000000..0dc1e6d70
--- /dev/null
+++ b/libc/misc/wctype/wctype.c
@@ -0,0 +1,8 @@
+/*
+ * Copyright (C) 2002-2006 Manuel Novoa III <mjn3@uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#define L_wctype
+#include "_wctype.c"
diff --git a/libc/misc/wctype/wctype_l.c b/libc/misc/wctype/wctype_l.c
new file mode 100644
index 000000000..65f82e2b1
--- /dev/null
+++ b/libc/misc/wctype/wctype_l.c
@@ -0,0 +1,9 @@
+/*
+ * Copyright (C) 2002-2006 Manuel Novoa III <mjn3@uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#define L_wctype_l
+#define __UCLIBC_DO_XLOCALE
+#include "_wctype.c"