summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2024-01-30 13:02:45 -0500
committerJakob Kaivo <jkk@ung.org>2024-01-30 13:02:45 -0500
commitc56eff2f75cca6c95459afff5eba571b98c1f131 (patch)
treedf6dd4781de306ccae2f21570d20292ab2798319
parent620f2dca70f68748c78e9caa634606a56e8b57b4 (diff)
update standard and safety checks
-rw-r--r--src/ctype/_tolower.h (renamed from src/ctype/_tolower.c)0
-rw-r--r--src/ctype/_toupper.h (renamed from src/ctype/_toupper.c)0
-rw-r--r--src/ctype/isalnum.c2
-rw-r--r--src/ctype/isalpha.c2
-rw-r--r--src/ctype/isdigit.c2
5 files changed, 3 insertions, 3 deletions
diff --git a/src/ctype/_tolower.c b/src/ctype/_tolower.h
index 7ea943df..7ea943df 100644
--- a/src/ctype/_tolower.c
+++ b/src/ctype/_tolower.h
diff --git a/src/ctype/_toupper.c b/src/ctype/_toupper.h
index 5abdb172..5abdb172 100644
--- a/src/ctype/_toupper.c
+++ b/src/ctype/_toupper.h
diff --git a/src/ctype/isalnum.c b/src/ctype/isalnum.c
index f0917094..30416a14 100644
--- a/src/ctype/isalnum.c
+++ b/src/ctype/isalnum.c
@@ -1,7 +1,7 @@
#include <ctype.h>
#include <limits.h>
#include <stdio.h>
-#include "_assert.h"
+#include "_safety.h"
/** test whether a character is alphanumeric **/
diff --git a/src/ctype/isalpha.c b/src/ctype/isalpha.c
index b82bd544..8382629b 100644
--- a/src/ctype/isalpha.c
+++ b/src/ctype/isalpha.c
@@ -1,7 +1,7 @@
#include <ctype.h>
#include <limits.h>
#include <stdio.h>
-#include "_assert.h"
+#include "_safety.h"
/** test whether a character is alphabetic **/
diff --git a/src/ctype/isdigit.c b/src/ctype/isdigit.c
index bbd228ad..3c41d5b2 100644
--- a/src/ctype/isdigit.c
+++ b/src/ctype/isdigit.c
@@ -1,7 +1,7 @@
#include <ctype.h>
#include <limits.h>
#include <stdio.h>
-#include "_assert.h"
+#include "_safety.h"
/** test whether a character is a digit **/