summaryrefslogtreecommitdiff
path: root/src/wctype
diff options
context:
space:
mode:
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/towctrans.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
18 files changed, 18 insertions, 18 deletions
diff --git a/src/wctype/iswalnum.c b/src/wctype/iswalnum.c
index 98c2f08c..c63afc08 100644
--- a/src/wctype/iswalnum.c
+++ b/src/wctype/iswalnum.c
@@ -12,7 +12,7 @@ int iswalnum(wint_t wc)
return iswalpha(wc) || iswdigit(wc);
}
-__check_1(int, 0, iswalnum, wint_t)
+CHECK_1(int, 0, iswalnum, wint_t)
/***
The fn(iswalnum) function tests whether arg(wc) is a wide character in the class
diff --git a/src/wctype/iswalpha.c b/src/wctype/iswalpha.c
index 8300b7ea..86e81d67 100644
--- a/src/wctype/iswalpha.c
+++ b/src/wctype/iswalpha.c
@@ -12,7 +12,7 @@ int iswalpha(wint_t wc)
return iswctype(wc, alpha);
}
-__check_1(int, 0, iswalpha, wint_t)
+CHECK_1(int, 0, iswalpha, wint_t)
/***
The fn(iswalpha) function tests whether arg(wc) is a wide character in the class
diff --git a/src/wctype/iswblank.c b/src/wctype/iswblank.c
index 2e0f0724..7699873f 100644
--- a/src/wctype/iswblank.c
+++ b/src/wctype/iswblank.c
@@ -11,7 +11,7 @@ int iswblank(wint_t wc)
return iswctype(wc, blank);
}
-__check_1(int, 0, iswblank, wint_t)
+CHECK_1(int, 0, iswblank, wint_t)
/***
The fn(iswblank) functions tests whether a wide character is a of the character
diff --git a/src/wctype/iswcntrl.c b/src/wctype/iswcntrl.c
index de6dd237..ef18c7c4 100644
--- a/src/wctype/iswcntrl.c
+++ b/src/wctype/iswcntrl.c
@@ -12,7 +12,7 @@ int iswcntrl(wint_t wc)
return iswctype(wc, cntrl);
}
-__check_1(int, 0, iswcntrl, wint_t)
+CHECK_1(int, 0, iswcntrl, wint_t)
/***
The fn(iswcntrl) function tests whether arg(wc) is a wide character in the class
diff --git a/src/wctype/iswctype.c b/src/wctype/iswctype.c
index 8ce67657..b1d1a3a1 100644
--- a/src/wctype/iswctype.c
+++ b/src/wctype/iswctype.c
@@ -15,7 +15,7 @@ int iswctype(wint_t wc, wctype_t desc)
return 0;
}
-__check_2(int, 0, iswctype, wint_t, wctype_t)
+CHECK_2(int, 0, iswctype, wint_t, wctype_t)
/***
The fn(iswctype) function tests whether arg(wc) is a wide character in the
diff --git a/src/wctype/iswdigit.c b/src/wctype/iswdigit.c
index 94feb0a3..aab43ffe 100644
--- a/src/wctype/iswdigit.c
+++ b/src/wctype/iswdigit.c
@@ -12,7 +12,7 @@ int iswdigit(wint_t wc)
return iswctype(wc, digit);
}
-__check_1(int, 0, iswdigit, wint_t)
+CHECK_1(int, 0, iswdigit, wint_t)
/***
The fn(iswdigit) function tests whether arg(wc) is a wide character in the class
diff --git a/src/wctype/iswgraph.c b/src/wctype/iswgraph.c
index 346af2b1..9c9b60b7 100644
--- a/src/wctype/iswgraph.c
+++ b/src/wctype/iswgraph.c
@@ -12,7 +12,7 @@ int iswgraph(wint_t wc)
return iswctype(wc, graph);
}
-__check_1(int, 0, iswgraph, wint_t)
+CHECK_1(int, 0, iswgraph, wint_t)
/***
The fn(iswgraph) function tests whether arg(wc) is a wide character in the class
diff --git a/src/wctype/iswlower.c b/src/wctype/iswlower.c
index ec3a59a3..113a0f15 100644
--- a/src/wctype/iswlower.c
+++ b/src/wctype/iswlower.c
@@ -12,7 +12,7 @@ int iswlower(wint_t wc)
return iswctype(wc, lower);
}
-__check_1(int, 0, iswlower, wint_t)
+CHECK_1(int, 0, iswlower, wint_t)
/***
The fn(iswlower) function tests whether arg(wc) is a wide character in the class
diff --git a/src/wctype/iswprint.c b/src/wctype/iswprint.c
index 8d6ec64a..4111607b 100644
--- a/src/wctype/iswprint.c
+++ b/src/wctype/iswprint.c
@@ -12,7 +12,7 @@ int iswprint(wint_t wc)
return iswctype(wc, print);
}
-__check_1(int, 0, iswprint, wint_t)
+CHECK_1(int, 0, iswprint, wint_t)
/***
The fn(iswprint) function tests whether arg(wc) is a character in the class
diff --git a/src/wctype/iswpunct.c b/src/wctype/iswpunct.c
index 831448db..7e07c5c7 100644
--- a/src/wctype/iswpunct.c
+++ b/src/wctype/iswpunct.c
@@ -12,7 +12,7 @@ int iswpunct(wint_t wc)
return iswctype(wc, punct);
}
-__check_1(int, 0, iswpunct, wint_t)
+CHECK_1(int, 0, iswpunct, wint_t)
/***
The fn(iswpunct) function tests whether arg(wc) is a character in the class
diff --git a/src/wctype/iswspace.c b/src/wctype/iswspace.c
index c95a4e1d..a6a05619 100644
--- a/src/wctype/iswspace.c
+++ b/src/wctype/iswspace.c
@@ -12,7 +12,7 @@ int iswspace(wint_t wc)
return iswctype(wc, space);
}
-__check_1(int, 0, iswspace, wint_t)
+CHECK_1(int, 0, iswspace, wint_t)
/***
The fn(iswspace) function tests whether arg(wc) is a wide character in the class
diff --git a/src/wctype/iswupper.c b/src/wctype/iswupper.c
index 7c9faa9c..41684dc0 100644
--- a/src/wctype/iswupper.c
+++ b/src/wctype/iswupper.c
@@ -12,7 +12,7 @@ int iswupper(wint_t wc)
return iswctype(wc, upper);
}
-__check_1(int, 0, iswupper, wint_t)
+CHECK_1(int, 0, iswupper, wint_t)
/***
The fn(iswupper) function tests whether arg(wc) is a wide character in the class
diff --git a/src/wctype/iswxdigit.c b/src/wctype/iswxdigit.c
index bbb669ca..d4e54921 100644
--- a/src/wctype/iswxdigit.c
+++ b/src/wctype/iswxdigit.c
@@ -12,7 +12,7 @@ int iswxdigit(wint_t wc)
return iswctype(wc, xdigit);
}
-__check_1(int, 0, iswxdigit, wint_t)
+CHECK_1(int, 0, iswxdigit, wint_t)
/***
The fn(iswxdigit) function tests whether arg(wc) is a wide character in the
diff --git a/src/wctype/towctrans.c b/src/wctype/towctrans.c
index 0c3d9a06..8e6d266c 100644
--- a/src/wctype/towctrans.c
+++ b/src/wctype/towctrans.c
@@ -14,7 +14,7 @@ wint_t towctrans(wint_t wc, wctrans_t desc)
return 0;
}
-__check_2(wint_t, 0, towctrans, wint_t, wctrans_t)
+CHECK_2(wint_t, 0, towctrans, wint_t, wctrans_t)
/***
The fn(towctrans) function translates the wide character arg(wc) according to
diff --git a/src/wctype/towlower.c b/src/wctype/towlower.c
index 8fa94e5a..0bcd7ec6 100644
--- a/src/wctype/towlower.c
+++ b/src/wctype/towlower.c
@@ -17,7 +17,7 @@ wint_t towlower(wint_t wc)
return towctrans(wc, trans);
}
-__check_1(wint_t, 0, towlower, wint_t)
+CHECK_1(wint_t, 0, towlower, wint_t)
/***
The fn(towlower) function converts a wide uppercase letter to its equivalent
diff --git a/src/wctype/towupper.c b/src/wctype/towupper.c
index 1c819c32..eb81b140 100644
--- a/src/wctype/towupper.c
+++ b/src/wctype/towupper.c
@@ -16,7 +16,7 @@ wint_t towupper(wint_t wc)
return towctrans(wc, trans);
}
-__check_1(wint_t, 0, towupper, wint_t)
+CHECK_1(wint_t, 0, towupper, wint_t)
/***
The fn(towupper) function converts a wide lowercase letter to its equivalent
diff --git a/src/wctype/wctrans.c b/src/wctype/wctrans.c
index 9fc08884..aa47d945 100644
--- a/src/wctype/wctrans.c
+++ b/src/wctype/wctrans.c
@@ -17,7 +17,7 @@ wctrans_t wctrans(const char * property)
return 0;
}
-__check_1(wctrans_t, 0, wctrans, const char *)
+CHECK_1(wctrans_t, 0, wctrans, const char *)
/***
The fn(wctrans) function looks up the wide character translation mapping
diff --git a/src/wctype/wctype.c b/src/wctype/wctype.c
index 767025e0..2dd4599f 100644
--- a/src/wctype/wctype.c
+++ b/src/wctype/wctype.c
@@ -37,7 +37,7 @@ wctype_t wctype(const char * property)
return 0;
}
-__check_1(wctype_t, 0, wctype, const char *)
+CHECK_1(wctype_t, 0, wctype, const char *)
/***
The fn(wctype) function looks up the character class specified by the string