X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=m4%2Fwctype.m4;fp=m4%2Fwctype.m4;h=0000000000000000000000000000000000000000;hb=c9b3436bd51a4dcf7d6cc6817d4c7a8ad99538d4;hp=319dada892186f72e04b58cd990f7f024054bfe3;hpb=09735ea6055f959a9cac481268754f07d6f6eb9f;p=m6w6%2Fext-psi diff --git a/m4/wctype.m4 b/m4/wctype.m4 deleted file mode 100644 index 319dada..0000000 --- a/m4/wctype.m4 +++ /dev/null @@ -1,42 +0,0 @@ -PSI_CHECK_WCTYPE() { - PSI_CONFIG_POSIX(wctype, wctype.h) - - PSI_TYPE(wctype_t, int) - PSI_TYPE(wctrans_t, int) - - PSI_DECL(int iswalnum, [(wint_t wc)]) - PSI_DECL(int iswalpha, [(wint_t wc)]) - PSI_DECL(int iswcntrl, [(wint_t wc)]) - PSI_DECL(int iswctype, [(wint_t wc, wctype_t class)]) - PSI_DECL(int iswdigit, [(wint_t wc)]) - PSI_DECL(int iswgraph, [(wint_t wc)]) - PSI_DECL(int iswlower, [(wint_t wc)]) - PSI_DECL(int iswprint, [(wint_t wc)]) - PSI_DECL(int iswpunct, [(wint_t wc)]) - PSI_DECL(int iswspace, [(wint_t wc)]) - PSI_DECL(int iswupper, [(wint_t wc)]) - PSI_DECL(int iswxdigit, [(wint_t wc)]) - PSI_DECL(wint_t towlower, [(wint_t wc)]) - PSI_DECL(wint_t towupper, [(wint_t wc)]) - PSI_DECL(wint_t towctrans, [(wint_t wc, wctrans_t desc)]) - PSI_DECL(wctype_t wctype, [(const char *name)]) - PSI_DECL(wctrans_t wctrans, [(const char *class)]) - - PSI_DECL(int iswalnum_l, [(wint_t wc, locale_t loc)]) - PSI_DECL(int iswalpha_l, [(wint_t wc, locale_t loc)]) - PSI_DECL(int iswcntrl_l, [(wint_t wc, locale_t loc)]) - PSI_DECL(int iswctype_l, [(wint_t wc_l, wctype_t class, locale_t loc)]) - PSI_DECL(int iswdigit_l, [(wint_t wc, locale_t loc)]) - PSI_DECL(int iswgraph_l, [(wint_t wc, locale_t loc)]) - PSI_DECL(int iswlower_l, [(wint_t wc, locale_t loc)]) - PSI_DECL(int iswprint_l, [(wint_t wc, locale_t loc)]) - PSI_DECL(int iswpunct_l, [(wint_t wc, locale_t loc)]) - PSI_DECL(int iswspace_l, [(wint_t wc, locale_t loc)]) - PSI_DECL(int iswupper_l, [(wint_t wc, locale_t loc)]) - PSI_DECL(int iswxdigit_l, [(wint_t wc, locale_t loc)]) - PSI_DECL(wint_t towlower_l, [(wint_t wc, locale_t loc)]) - PSI_DECL(wint_t towupper_l, [(wint_t wc, locale_t loc)]) - PSI_DECL(wint_t towctrans_l, [(wint_t wc, wctrans_t desc, locale_t loc)]) - PSI_DECL(wctype_t wctype_l, [(const char *name, locale_t loc)]) - PSI_DECL(wctrans_t wctrans_l, [(const char *class, locale_t loc)]) -}