summaryrefslogtreecommitdiff
path: root/src/wctype
diff options
context:
space:
mode:
Diffstat (limited to 'src/wctype')
-rw-r--r--src/wctype/iswalnum.c4
-rw-r--r--src/wctype/iswalpha.c2
-rw-r--r--src/wctype/iswcntrl.c2
-rw-r--r--src/wctype/iswctype.c2
-rw-r--r--src/wctype/iswdigit.c2
-rw-r--r--src/wctype/iswgraph.c2
-rw-r--r--src/wctype/iswlower.c2
-rw-r--r--src/wctype/iswprint.c2
-rw-r--r--src/wctype/iswpunct.c2
-rw-r--r--src/wctype/iswspace.c2
-rw-r--r--src/wctype/iswupper.c2
-rw-r--r--src/wctype/iswxdigit.c2
-rw-r--r--src/wctype/towctrans.c4
-rw-r--r--src/wctype/towlower.c4
-rw-r--r--src/wctype/towupper.c2
-rw-r--r--src/wctype/wctrans.c2
-rw-r--r--src/wctype/wctype.c2
17 files changed, 20 insertions, 20 deletions
diff --git a/src/wctype/iswalnum.c b/src/wctype/iswalnum.c
index d385fd1c..13f9368d 100644
--- a/src/wctype/iswalnum.c
+++ b/src/wctype/iswalnum.c
@@ -1,7 +1,7 @@
#include <wctype.h>
-#include "limits.h"
+#include <limits.h>
+#include <wchar.h>
#include "_assert.h"
-#include "wchar.h"
/** test whether a wide character is alphanumeric **/
int iswalnum(wint_t wc)
diff --git a/src/wctype/iswalpha.c b/src/wctype/iswalpha.c
index 99448d54..d5efc1c2 100644
--- a/src/wctype/iswalpha.c
+++ b/src/wctype/iswalpha.c
@@ -1,5 +1,5 @@
#include <wctype.h>
-#include "wchar.h"
+#include <wchar.h>
#include "_assert.h"
/** test whether a wide character is alphabetic **/
diff --git a/src/wctype/iswcntrl.c b/src/wctype/iswcntrl.c
index 571318cc..aee9ed51 100644
--- a/src/wctype/iswcntrl.c
+++ b/src/wctype/iswcntrl.c
@@ -1,5 +1,5 @@
#include <wctype.h>
-#include "wchar.h"
+#include <wchar.h>
#include "_assert.h"
/** test whether a wide character is a control character */
diff --git a/src/wctype/iswctype.c b/src/wctype/iswctype.c
index a1ca4c77..acfde506 100644
--- a/src/wctype/iswctype.c
+++ b/src/wctype/iswctype.c
@@ -1,5 +1,5 @@
#include <wctype.h>
-#include "wchar.h"
+#include <wchar.h>
#include "_assert.h"
/** test whether a wide character is part of a character class **/
diff --git a/src/wctype/iswdigit.c b/src/wctype/iswdigit.c
index 3b92a8b3..e96492bb 100644
--- a/src/wctype/iswdigit.c
+++ b/src/wctype/iswdigit.c
@@ -1,5 +1,5 @@
#include <wctype.h>
-#include "wchar.h"
+#include <wchar.h>
#include "_assert.h"
/** test whether a wide character is a digit **/
diff --git a/src/wctype/iswgraph.c b/src/wctype/iswgraph.c
index 4602bd7f..2c07eab6 100644
--- a/src/wctype/iswgraph.c
+++ b/src/wctype/iswgraph.c
@@ -1,5 +1,5 @@
#include <wctype.h>
-#include "wchar.h"
+#include <wchar.h>
#include "_assert.h"
/** test whether a wide character is graphic **/
diff --git a/src/wctype/iswlower.c b/src/wctype/iswlower.c
index 3d3a1b6e..9a174a4d 100644
--- a/src/wctype/iswlower.c
+++ b/src/wctype/iswlower.c
@@ -1,5 +1,5 @@
#include <wctype.h>
-#include "wchar.h"
+#include <wchar.h>
#include "_assert.h"
/** test whether a character is a lowercase letter **/
diff --git a/src/wctype/iswprint.c b/src/wctype/iswprint.c
index cd2392ea..3d8c6682 100644
--- a/src/wctype/iswprint.c
+++ b/src/wctype/iswprint.c
@@ -1,5 +1,5 @@
#include <wctype.h>
-#include "wchar.h"
+#include <wchar.h>
#include "_assert.h"
/** test whether a wide character is printable **/
diff --git a/src/wctype/iswpunct.c b/src/wctype/iswpunct.c
index 2ef6c246..0b4a2d3a 100644
--- a/src/wctype/iswpunct.c
+++ b/src/wctype/iswpunct.c
@@ -1,5 +1,5 @@
#include <wctype.h>
-#include "wchar.h"
+#include <wchar.h>
#include "_assert.h"
/** test whether a wide character is punctuation **/
diff --git a/src/wctype/iswspace.c b/src/wctype/iswspace.c
index 7c1c6b01..8b1b3702 100644
--- a/src/wctype/iswspace.c
+++ b/src/wctype/iswspace.c
@@ -1,5 +1,5 @@
#include <wctype.h>
-#include "wchar.h"
+#include <wchar.h>
#include "_assert.h"
/** test whether a wide character is white-space **/
diff --git a/src/wctype/iswupper.c b/src/wctype/iswupper.c
index 5702579c..8578a863 100644
--- a/src/wctype/iswupper.c
+++ b/src/wctype/iswupper.c
@@ -1,5 +1,5 @@
#include <wctype.h>
-#include "wchar.h"
+#include <wchar.h>
#include "_assert.h"
/** test whether a wide character is an uppercase letter **/
diff --git a/src/wctype/iswxdigit.c b/src/wctype/iswxdigit.c
index a4fc4d80..655372d0 100644
--- a/src/wctype/iswxdigit.c
+++ b/src/wctype/iswxdigit.c
@@ -1,5 +1,5 @@
#include <wctype.h>
-#include "wchar.h"
+#include <wchar.h>
#include "_assert.h"
/** test whether a wide character is a hexadecimal digit **/
diff --git a/src/wctype/towctrans.c b/src/wctype/towctrans.c
index 0b083cad..db35dee3 100644
--- a/src/wctype/towctrans.c
+++ b/src/wctype/towctrans.c
@@ -1,6 +1,6 @@
#include <wctype.h>
-#include "wchar.h"
-#include "../_assert.h"
+#include <wchar.h>
+#include "_assert.h"
wint_t towctrans(wint_t wc, wctrans_t desc)
{
diff --git a/src/wctype/towlower.c b/src/wctype/towlower.c
index 2b38a1cd..46598cae 100644
--- a/src/wctype/towlower.c
+++ b/src/wctype/towlower.c
@@ -1,6 +1,6 @@
#include <wctype.h>
-#include "wchar.h"
-#include "stdlib.h"
+#include <wchar.h>
+#include <stdlib.h>
#include "_assert.h"
/** convert a wide uppercase letter to lowercase **/
diff --git a/src/wctype/towupper.c b/src/wctype/towupper.c
index 9c683b20..16e2334a 100644
--- a/src/wctype/towupper.c
+++ b/src/wctype/towupper.c
@@ -1,5 +1,5 @@
#include <wctype.h>
-#include "wchar.h"
+#include <wchar.h>
#include "_assert.h"
/** convert a wide lowercase letter to uppercase **/
diff --git a/src/wctype/wctrans.c b/src/wctype/wctrans.c
index c19a8548..975a04cb 100644
--- a/src/wctype/wctrans.c
+++ b/src/wctype/wctrans.c
@@ -1,5 +1,5 @@
#include <wctype.h>
-#include "string.h"
+#include <string.h>
#include "_assert.h"
#include "_wctype.h"
diff --git a/src/wctype/wctype.c b/src/wctype/wctype.c
index 976e7f05..5c3acbfa 100644
--- a/src/wctype/wctype.c
+++ b/src/wctype/wctype.c
@@ -1,5 +1,5 @@
#include <wctype.h>
-#include "string.h"
+#include <string.h>
#include "_assert.h"
#include "_wctype.h"