1
0
mirror of https://github.com/adtools/clib2.git synced 2025-12-08 14:59:05 +00:00

Implement some more of the iswXXX() functions.

This commit is contained in:
Sebastian Bauer
2018-03-28 21:16:14 +02:00
parent ef18bf5f3e
commit 345995000a
7 changed files with 22 additions and 15 deletions

View File

@ -35,11 +35,12 @@
#include <wctype.h>
#endif /* _WCTYPE_HEADERS_H */
#include <ctype.h>
/****************************************************************************/
int
iswupper(wint_t c)
{
/* ZZZ unimplemented */
return(0);
return isupper(c);
}