summaryrefslogtreecommitdiff
path: root/src/ctype
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/ctype
parent3e282018ffb5806cafafeb5d0d6f8d67c9bb86e8 (diff)
add src/ to -I and exorcise ../ from #include
Diffstat (limited to 'src/ctype')
-rw-r--r--src/ctype/_ctype.h4
-rw-r--r--src/ctype/isalnum.c2
-rw-r--r--src/ctype/isalpha.c2
-rw-r--r--src/ctype/iscntrl.c2
-rw-r--r--src/ctype/isdigit.c2
-rw-r--r--src/ctype/isgraph.c2
-rw-r--r--src/ctype/islower.c2
-rw-r--r--src/ctype/isprint.c2
-rw-r--r--src/ctype/ispunct.c2
-rw-r--r--src/ctype/isspace.c2
-rw-r--r--src/ctype/isupper.c2
-rw-r--r--src/ctype/isxdigit.c2
12 files changed, 13 insertions, 13 deletions
diff --git a/src/ctype/_ctype.h b/src/ctype/_ctype.h
index be3e8401..f0ff0e5a 100644
--- a/src/ctype/_ctype.h
+++ b/src/ctype/_ctype.h
@@ -1,8 +1,8 @@
#ifndef ___CTYPE_H__
#define ___CTYPE_H__
-#include "../_assert.h"
-#include "../locale/_locale.h"
+#include "_assert.h"
+#include "locale/_locale.h"
typedef enum {
CT_ALPHA = (1 << 0),
diff --git a/src/ctype/isalnum.c b/src/ctype/isalnum.c
index 67ade0a2..d60efaeb 100644
--- a/src/ctype/isalnum.c
+++ b/src/ctype/isalnum.c
@@ -1,6 +1,6 @@
#include <ctype.h>
#include "limits.h"
-#include "../_assert.h"
+#include "_assert.h"
/** test whether a character is alphanumeric **/
diff --git a/src/ctype/isalpha.c b/src/ctype/isalpha.c
index b87817c8..876662ad 100644
--- a/src/ctype/isalpha.c
+++ b/src/ctype/isalpha.c
@@ -1,6 +1,6 @@
#include <ctype.h>
#include "limits.h"
-#include "../_assert.h"
+#include "_assert.h"
/** test whether a character is alphabetic **/
diff --git a/src/ctype/iscntrl.c b/src/ctype/iscntrl.c
index d90803e5..06046732 100644
--- a/src/ctype/iscntrl.c
+++ b/src/ctype/iscntrl.c
@@ -1,6 +1,6 @@
#include <ctype.h>
#include "limits.h"
-#include "../_assert.h"
+#include "_assert.h"
#include "_ctype.h"
/** test whether a character is a control character */
diff --git a/src/ctype/isdigit.c b/src/ctype/isdigit.c
index 0f91a7d3..beb689a1 100644
--- a/src/ctype/isdigit.c
+++ b/src/ctype/isdigit.c
@@ -1,6 +1,6 @@
#include <ctype.h>
#include "limits.h"
-#include "../_assert.h"
+#include "_assert.h"
/** test whether a character is a digit **/
diff --git a/src/ctype/isgraph.c b/src/ctype/isgraph.c
index 72be27b3..4ff0c92e 100644
--- a/src/ctype/isgraph.c
+++ b/src/ctype/isgraph.c
@@ -1,6 +1,6 @@
#include <ctype.h>
#include "limits.h"
-#include "../_assert.h"
+#include "_assert.h"
#include "_ctype.h"
/** test whether a character is graphic **/
diff --git a/src/ctype/islower.c b/src/ctype/islower.c
index 6dfedcc6..fe65b034 100644
--- a/src/ctype/islower.c
+++ b/src/ctype/islower.c
@@ -1,6 +1,6 @@
#include <ctype.h>
#include "limits.h"
-#include "../_assert.h"
+#include "_assert.h"
#include "_ctype.h"
/** test whether a character is a lowercase letter **/
diff --git a/src/ctype/isprint.c b/src/ctype/isprint.c
index e4b5a531..62d24126 100644
--- a/src/ctype/isprint.c
+++ b/src/ctype/isprint.c
@@ -1,6 +1,6 @@
#include <ctype.h>
#include "limits.h"
-#include "../_assert.h"
+#include "_assert.h"
#include "_ctype.h"
/** test whether a character is printable **/
diff --git a/src/ctype/ispunct.c b/src/ctype/ispunct.c
index e73461e1..9a7656c5 100644
--- a/src/ctype/ispunct.c
+++ b/src/ctype/ispunct.c
@@ -1,6 +1,6 @@
#include <ctype.h>
#include "limits.h"
-#include "../_assert.h"
+#include "_assert.h"
#include "_ctype.h"
/** test whether a character is punctuation **/
diff --git a/src/ctype/isspace.c b/src/ctype/isspace.c
index d4eeb134..b2bcb553 100644
--- a/src/ctype/isspace.c
+++ b/src/ctype/isspace.c
@@ -1,6 +1,6 @@
#include <ctype.h>
#include "limits.h"
-#include "../_assert.h"
+#include "_assert.h"
#include "_ctype.h"
/** test whether a character is white-space **/
diff --git a/src/ctype/isupper.c b/src/ctype/isupper.c
index e0eb545e..1d06124f 100644
--- a/src/ctype/isupper.c
+++ b/src/ctype/isupper.c
@@ -1,6 +1,6 @@
#include <ctype.h>
#include "limits.h"
-#include "../_assert.h"
+#include "_assert.h"
#include "_ctype.h"
/** test whether a character is an uppercase letter **/
diff --git a/src/ctype/isxdigit.c b/src/ctype/isxdigit.c
index 9d73d662..9d6d7c6c 100644
--- a/src/ctype/isxdigit.c
+++ b/src/ctype/isxdigit.c
@@ -1,6 +1,6 @@
#include <ctype.h>
#include "limits.h"
-#include "../_assert.h"
+#include "_assert.h"
#include "_ctype.h"
/** test whether a character is a hexadecimal digit **/