mirror of https://git.musl-libc.org/git/musl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
211 B
15 lines
211 B
#include <wctype.h>
|
|
#include <ctype.h>
|
|
#include "libc.h"
|
|
|
|
int iswblank(wint_t wc)
|
|
{
|
|
return isblank(wc);
|
|
}
|
|
|
|
int __iswblank_l(wint_t c, locale_t l)
|
|
{
|
|
return iswblank(c);
|
|
}
|
|
|
|
weak_alias(__iswblank_l, iswblank_l);
|
|
|