summaryrefslogtreecommitdiff
path: root/src/wctype
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2020-08-13 13:48:50 -0400
committerJakob Kaivo <jkk@ung.org>2020-08-13 13:48:50 -0400
commit489bef2ace3c3c617f5bf78ded45a5b81fe2fd46 (patch)
treef7df0cd2678ebe868356e9a00952555a28a75214 /src/wctype
parent3e282018ffb5806cafafeb5d0d6f8d67c9bb86e8 (diff)
add src/ to -I and exorcise ../ from #include
Diffstat (limited to 'src/wctype')
-rw-r--r--src/wctype/iswalnum.c2
-rw-r--r--src/wctype/iswalpha.c2
-rw-r--r--src/wctype/iswblank.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/towlower.c2
-rw-r--r--src/wctype/towupper.c2
-rw-r--r--src/wctype/wctrans.c2
-rw-r--r--src/wctype/wctype.c2
17 files changed, 17 insertions, 17 deletions
diff --git a/src/wctype/iswalnum.c b/src/wctype/iswalnum.c
index 42f0df4a..d385fd1c 100644
--- a/src/wctype/iswalnum.c
+++ b/src/wctype/iswalnum.c
@@ -1,6 +1,6 @@
#include <wctype.h>
#include "limits.h"
-#include "../_assert.h"
+#include "_assert.h"
#include "wchar.h"
/** test whether a wide character is alphanumeric **/
diff --git a/src/wctype/iswalpha.c b/src/wctype/iswalpha.c
index 0d3e6d57..99448d54 100644
--- a/src/wctype/iswalpha.c
+++ b/src/wctype/iswalpha.c
@@ -1,6 +1,6 @@
#include <wctype.h>
#include "wchar.h"
-#include "../_assert.h"
+#include "_assert.h"
/** test whether a wide character is alphabetic **/
int iswalpha(wint_t wc)
diff --git a/src/wctype/iswblank.c b/src/wctype/iswblank.c
index 753f9b41..1709a7a6 100644
--- a/src/wctype/iswblank.c
+++ b/src/wctype/iswblank.c
@@ -1,5 +1,5 @@
#include <wctype.h>
-#include "../_assert.h"
+#include "_assert.h"
/** test whether a wide character is blank **/
int iswblank(wint_t wc)
diff --git a/src/wctype/iswcntrl.c b/src/wctype/iswcntrl.c
index acec5785..571318cc 100644
--- a/src/wctype/iswcntrl.c
+++ b/src/wctype/iswcntrl.c
@@ -1,6 +1,6 @@
#include <wctype.h>
#include "wchar.h"
-#include "../_assert.h"
+#include "_assert.h"
/** test whether a wide character is a control character */
int iswcntrl(wint_t wc)
diff --git a/src/wctype/iswctype.c b/src/wctype/iswctype.c
index db05e919..a1ca4c77 100644
--- a/src/wctype/iswctype.c
+++ b/src/wctype/iswctype.c
@@ -1,6 +1,6 @@
#include <wctype.h>
#include "wchar.h"
-#include "../_assert.h"
+#include "_assert.h"
/** test whether a wide character is part of a character class **/
int iswctype(wint_t wc, wctype_t desc)
diff --git a/src/wctype/iswdigit.c b/src/wctype/iswdigit.c
index 7dc13755..3b92a8b3 100644
--- a/src/wctype/iswdigit.c
+++ b/src/wctype/iswdigit.c
@@ -1,6 +1,6 @@
#include <wctype.h>
#include "wchar.h"
-#include "../_assert.h"
+#include "_assert.h"
/** test whether a wide character is a digit **/
int iswdigit(wint_t wc)
diff --git a/src/wctype/iswgraph.c b/src/wctype/iswgraph.c
index dba00813..4602bd7f 100644
--- a/src/wctype/iswgraph.c
+++ b/src/wctype/iswgraph.c
@@ -1,6 +1,6 @@
#include <wctype.h>
#include "wchar.h"
-#include "../_assert.h"
+#include "_assert.h"
/** test whether a wide character is graphic **/
int iswgraph(wint_t wc)
diff --git a/src/wctype/iswlower.c b/src/wctype/iswlower.c
index 5bd19e2e..3d3a1b6e 100644
--- a/src/wctype/iswlower.c
+++ b/src/wctype/iswlower.c
@@ -1,6 +1,6 @@
#include <wctype.h>
#include "wchar.h"
-#include "../_assert.h"
+#include "_assert.h"
/** test whether a character is a lowercase letter **/
int iswlower(wint_t wc)
diff --git a/src/wctype/iswprint.c b/src/wctype/iswprint.c
index 51730c5e..cd2392ea 100644
--- a/src/wctype/iswprint.c
+++ b/src/wctype/iswprint.c
@@ -1,6 +1,6 @@
#include <wctype.h>
#include "wchar.h"
-#include "../_assert.h"
+#include "_assert.h"
/** test whether a wide character is printable **/
int iswprint(wint_t wc)
diff --git a/src/wctype/iswpunct.c b/src/wctype/iswpunct.c
index 5896f8bb..2ef6c246 100644
--- a/src/wctype/iswpunct.c
+++ b/src/wctype/iswpunct.c
@@ -1,6 +1,6 @@
#include <wctype.h>
#include "wchar.h"
-#include "../_assert.h"
+#include "_assert.h"
/** test whether a wide character is punctuation **/
int iswpunct(wint_t wc)
diff --git a/src/wctype/iswspace.c b/src/wctype/iswspace.c
index feb22b5e..7c1c6b01 100644
--- a/src/wctype/iswspace.c
+++ b/src/wctype/iswspace.c
@@ -1,6 +1,6 @@
#include <wctype.h>
#include "wchar.h"
-#include "../_assert.h"
+#include "_assert.h"
/** test whether a wide character is white-space **/
int iswspace(wint_t wc)
diff --git a/src/wctype/iswupper.c b/src/wctype/iswupper.c
index b56e4214..5702579c 100644
--- a/src/wctype/iswupper.c
+++ b/src/wctype/iswupper.c
@@ -1,6 +1,6 @@
#include <wctype.h>
#include "wchar.h"
-#include "../_assert.h"
+#include "_assert.h"
/** test whether a wide character is an uppercase letter **/
int iswupper(wint_t wc)
diff --git a/src/wctype/iswxdigit.c b/src/wctype/iswxdigit.c
index 2b255a40..a4fc4d80 100644
--- a/src/wctype/iswxdigit.c
+++ b/src/wctype/iswxdigit.c
@@ -1,6 +1,6 @@
#include <wctype.h>
#include "wchar.h"
-#include "../_assert.h"
+#include "_assert.h"
/** test whether a wide character is a hexadecimal digit **/
int iswxdigit(wint_t wc)
diff --git a/src/wctype/towlower.c b/src/wctype/towlower.c
index fe0c632e..2b38a1cd 100644
--- a/src/wctype/towlower.c
+++ b/src/wctype/towlower.c
@@ -1,7 +1,7 @@
#include <wctype.h>
#include "wchar.h"
#include "stdlib.h"
-#include "../_assert.h"
+#include "_assert.h"
/** convert a wide uppercase letter to lowercase **/
wint_t towlower(wint_t wc)
diff --git a/src/wctype/towupper.c b/src/wctype/towupper.c
index 0f1a40be..9c683b20 100644
--- a/src/wctype/towupper.c
+++ b/src/wctype/towupper.c
@@ -1,6 +1,6 @@
#include <wctype.h>
#include "wchar.h"
-#include "../_assert.h"
+#include "_assert.h"
/** convert a wide lowercase letter to uppercase **/
wint_t towupper(wint_t wc)
diff --git a/src/wctype/wctrans.c b/src/wctype/wctrans.c
index 4380467e..c19a8548 100644
--- a/src/wctype/wctrans.c
+++ b/src/wctype/wctrans.c
@@ -1,6 +1,6 @@
#include <wctype.h>
#include "string.h"
-#include "../_assert.h"
+#include "_assert.h"
#include "_wctype.h"
/** lookup character translation **/
diff --git a/src/wctype/wctype.c b/src/wctype/wctype.c
index c2ec3460..976e7f05 100644
--- a/src/wctype/wctype.c
+++ b/src/wctype/wctype.c
@@ -1,6 +1,6 @@
#include <wctype.h>
#include "string.h"
-#include "../_assert.h"
+#include "_assert.h"
#include "_wctype.h"
/** lookup character class **/