summaryrefslogtreecommitdiff
path: root/src/ctype
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2024-01-31 17:25:37 -0500
committerJakob Kaivo <jkk@ung.org>2024-01-31 17:25:37 -0500
commiteb55cd7a9e8a8e77f48f0c7d7449fa9e00cea75f (patch)
tree2da53e254943e2e1836f63fd260a1322862d02b5 /src/ctype
parentc03798ecaecc529eab2332c11d1550f02f503c87 (diff)
git rid of __check_* in favor of CHECK_*
Diffstat (limited to 'src/ctype')
-rw-r--r--src/ctype/isalnum.c2
-rw-r--r--src/ctype/isalpha.c2
-rw-r--r--src/ctype/isblank.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
-rw-r--r--src/ctype/tolower.c2
-rw-r--r--src/ctype/toupper.c2
14 files changed, 14 insertions, 14 deletions
diff --git a/src/ctype/isalnum.c b/src/ctype/isalnum.c
index 2cd247be..26a1ad01 100644
--- a/src/ctype/isalnum.c
+++ b/src/ctype/isalnum.c
@@ -10,7 +10,7 @@ int isalnum(int c)
return isalpha(c) || isdigit(c);
}
-__check_1(int, 0, isalnum, int)
+CHECK_1(int, 0, isalnum, int)
/***
tests whether ARGUMENT(c) is a character in the class
diff --git a/src/ctype/isalpha.c b/src/ctype/isalpha.c
index 670d7c51..cbf53284 100644
--- a/src/ctype/isalpha.c
+++ b/src/ctype/isalpha.c
@@ -10,7 +10,7 @@ int isalpha(int c)
return islower(c) || isupper(c);
}
-__check_1(int, 0, isalpha, int)
+CHECK_1(int, 0, isalpha, int)
/***
tests whether ARGUMENT(c) is a character in the class
diff --git a/src/ctype/isblank.c b/src/ctype/isblank.c
index 2f418760..3568241c 100644
--- a/src/ctype/isblank.c
+++ b/src/ctype/isblank.c
@@ -12,7 +12,7 @@ int isblank(int c)
return c == EOF ? 0 : map[c] & CT_BLANK;
}
-__check_1(int, 0, isblank, int)
+CHECK_1(int, 0, isblank, int)
/***
tests whether a character is a of the character class CCLASS(blank) in the
diff --git a/src/ctype/iscntrl.c b/src/ctype/iscntrl.c
index be619f83..a8107d05 100644
--- a/src/ctype/iscntrl.c
+++ b/src/ctype/iscntrl.c
@@ -12,7 +12,7 @@ int iscntrl(int c)
return c == EOF ? 0 : map[c] & CT_CNTRL;
}
-__check_1(int, 0, iscntrl, int)
+CHECK_1(int, 0, iscntrl, int)
/***
tests whether ARGUMENT(c) is a character in the class CHARACTER_CLASS(cntrl)
diff --git a/src/ctype/isdigit.c b/src/ctype/isdigit.c
index 23413d35..16d93f31 100644
--- a/src/ctype/isdigit.c
+++ b/src/ctype/isdigit.c
@@ -11,7 +11,7 @@ int isdigit(int c)
return isxdigit(c) && !isalpha(c);
}
-__check_1(int, 0, isdigit, int)
+CHECK_1(int, 0, isdigit, int)
/***
tests whether ARGUMENT(c) is a character in the class CHARACTER_CLASS(digit)
diff --git a/src/ctype/isgraph.c b/src/ctype/isgraph.c
index 365b795f..be28a436 100644
--- a/src/ctype/isgraph.c
+++ b/src/ctype/isgraph.c
@@ -12,7 +12,7 @@ int isgraph(int c)
return c == EOF ? 0 : map[c] & CT_GRAPH;
}
-__check_1(int, 0, isgraph, int)
+CHECK_1(int, 0, isgraph, int)
/***
tests whether ARGUMENT(c) is a character in the class CHARACTER_CLASS(graph)
diff --git a/src/ctype/islower.c b/src/ctype/islower.c
index 5481acee..30aa16d1 100644
--- a/src/ctype/islower.c
+++ b/src/ctype/islower.c
@@ -12,7 +12,7 @@ int islower(int c)
return c == EOF ? 0 : map[c] & CT_LOWER;
}
-__check_1(int, 0, islower, int)
+CHECK_1(int, 0, islower, int)
/***
tests whether ARGUMENT(c) is a character in the class CHARACTER_CLASS(lower)
diff --git a/src/ctype/isprint.c b/src/ctype/isprint.c
index 8909a722..5cbc726c 100644
--- a/src/ctype/isprint.c
+++ b/src/ctype/isprint.c
@@ -12,7 +12,7 @@ int isprint(int c)
return c == EOF ? 0 : map[c] & CT_PRINT;
}
-__check_1(int, 0, isprint, int)
+CHECK_1(int, 0, isprint, int)
/***
tests whether ARGUMENT(c) is a character in the class CHARACTER_CLASS(print)
diff --git a/src/ctype/ispunct.c b/src/ctype/ispunct.c
index 50ab7fef..17bd3e76 100644
--- a/src/ctype/ispunct.c
+++ b/src/ctype/ispunct.c
@@ -12,7 +12,7 @@ int ispunct(int c)
return c == EOF ? 0 : map[c] & CT_PUNCT;
}
-__check_1(int, 0, ispunct, int)
+CHECK_1(int, 0, ispunct, int)
/***
tests whether ARGUMENT(c) is a character in the class CHARACTER_CLASS(punct)
diff --git a/src/ctype/isspace.c b/src/ctype/isspace.c
index 2cff50c9..654d50fb 100644
--- a/src/ctype/isspace.c
+++ b/src/ctype/isspace.c
@@ -12,7 +12,7 @@ int isspace(int c)
return c == EOF ? 0 : map[c] & CT_SPACE;
}
-__check_1(int, 0, isspace, int)
+CHECK_1(int, 0, isspace, int)
/***
tests whether ARGUMENT(c) is a character in the class CHARACTER_CLASS(space)
diff --git a/src/ctype/isupper.c b/src/ctype/isupper.c
index 039e5f72..c21be203 100644
--- a/src/ctype/isupper.c
+++ b/src/ctype/isupper.c
@@ -12,7 +12,7 @@ int isupper(int c)
return c == EOF ? 0 : map[c] & CT_UPPER;
}
-__check_1(int, 0, isupper, int)
+CHECK_1(int, 0, isupper, int)
/***
tests whether ARGUMENT(c) is a character in the class CHARACTER_CLASS(upper)
diff --git a/src/ctype/isxdigit.c b/src/ctype/isxdigit.c
index 5207bda7..8a227e2a 100644
--- a/src/ctype/isxdigit.c
+++ b/src/ctype/isxdigit.c
@@ -12,7 +12,7 @@ int isxdigit(int c)
return c == EOF ? 0 : map[c] & CT_XDIGIT;
}
-__check_1(int, 0, isxdigit, int)
+CHECK_1(int, 0, isxdigit, int)
/***
tests whether ARGUMENT(c) is a character in the class CHARACTER_CLASS(xdigit)
diff --git a/src/ctype/tolower.c b/src/ctype/tolower.c
index 0cbdb9d4..d5284159 100644
--- a/src/ctype/tolower.c
+++ b/src/ctype/tolower.c
@@ -12,7 +12,7 @@ int tolower(int c)
return c == EOF ? EOF : map[c];
}
-__check_1(int, 0, tolower, int)
+CHECK_1(int, 0, tolower, int)
/***
converts an uppercase letter to its equivalent lowercase letter in the current
diff --git a/src/ctype/toupper.c b/src/ctype/toupper.c
index 43cd52fd..a3481200 100644
--- a/src/ctype/toupper.c
+++ b/src/ctype/toupper.c
@@ -12,7 +12,7 @@ int toupper(int c)
return c == EOF ? EOF : map[c];
}
-__check_1(int, 0, toupper, int)
+CHECK_1(int, 0, toupper, int)
/***
converts a lowercase letter to its equivalent uppercase letter in the current