fix some omissions and mistakes in locale_t interface definitions

This commit is contained in:
Rich Felker
2012-02-06 21:33:40 -05:00
parent e5a7f14c81
commit c09b6f8ab6
14 changed files with 37 additions and 13 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
#include <wctype.h>
wint_t iswalnum_l(wint_t c, locale_t l)
int iswalnum_l(wint_t c, locale_t l)
{
return iswalnum(c);
}
+1 -1
View File
@@ -1,6 +1,6 @@
#include <wctype.h>
wint_t iswalpha_l(wint_t c, locale_t l)
int iswalpha_l(wint_t c, locale_t l)
{
return iswalpha(c);
}
+1 -1
View File
@@ -1,6 +1,6 @@
#include <wctype.h>
wint_t iswblank_l(wint_t c, locale_t l)
int iswblank_l(wint_t c, locale_t l)
{
return iswblank(c);
}
+1 -1
View File
@@ -1,6 +1,6 @@
#include <wctype.h>
wint_t iswcntrl_l(wint_t c, locale_t l)
int iswcntrl_l(wint_t c, locale_t l)
{
return iswcntrl(c);
}
+1 -1
View File
@@ -1,6 +1,6 @@
#include <wctype.h>
wint_t iswctype_l(wint_t c, wctype_t t, locale_t l)
int iswctype_l(wint_t c, wctype_t t, locale_t l)
{
return iswctype(c, t);
}
+1 -1
View File
@@ -1,6 +1,6 @@
#include <wctype.h>
wint_t iswdigit_l(wint_t c, locale_t l)
int iswdigit_l(wint_t c, locale_t l)
{
return iswdigit(c);
}
+1 -1
View File
@@ -1,6 +1,6 @@
#include <wctype.h>
wint_t iswgraph_l(wint_t c, locale_t l)
int iswgraph_l(wint_t c, locale_t l)
{
return iswgraph(c);
}
+1 -1
View File
@@ -1,6 +1,6 @@
#include <wctype.h>
wint_t iswlower_l(wint_t c, locale_t l)
int iswlower_l(wint_t c, locale_t l)
{
return iswlower(c);
}
+1 -1
View File
@@ -1,6 +1,6 @@
#include <wctype.h>
wint_t iswprint_l(wint_t c, locale_t l)
int iswprint_l(wint_t c, locale_t l)
{
return iswprint(c);
}
+1 -1
View File
@@ -1,6 +1,6 @@
#include <wctype.h>
wint_t iswpunct_l(wint_t c, locale_t l)
int iswpunct_l(wint_t c, locale_t l)
{
return iswpunct(c);
}
+1 -1
View File
@@ -1,6 +1,6 @@
#include <wctype.h>
wint_t iswspace_l(wint_t c, locale_t l)
int iswspace_l(wint_t c, locale_t l)
{
return iswspace(c);
}
+1 -1
View File
@@ -1,6 +1,6 @@
#include <wctype.h>
wint_t iswupper_l(wint_t c, locale_t l)
int iswupper_l(wint_t c, locale_t l)
{
return iswupper(c);
}
+1 -1
View File
@@ -1,6 +1,6 @@
#include <wctype.h>
wint_t iswxdigit_l(wint_t c, locale_t l)
int iswxdigit_l(wint_t c, locale_t l)
{
return iswxdigit(c);
}