libs/libc/libc.csv: Add ctype functions

This commit is contained in:
YAMAMOTO Takashi 2022-01-27 15:36:34 +09:00 committed by Xiang Xiao
parent ead9bf6481
commit 0b8464419d

View File

@ -75,6 +75,21 @@
"inet_ntoa","arpa/inet.h","defined(CONFIG_NET_IPv4)","FAR char *","struct in_addr"
"inet_ntop","arpa/inet.h","","FAR const char","int","FAR const void *","FAR char *","socklen_t"
"inet_pton","arpa/inet.h","","int","int","FAR const char *","FAR void *"
"isspace","ctype.h","","int","int"
"isascii","ctype.h","","int","int"
"isprint","ctype.h","","int","int"
"isgraph","ctype.h","","int","int"
"iscntrl","ctype.h","","int","int"
"islower","ctype.h","","int","int"
"isupper","ctype.h","","int","int"
"isalpha","ctype.h","","int","int"
"isblank","ctype.h","","int","int"
"isdigit","ctype.h","","int","int"
"isalnum","ctype.h","","int","int"
"ispunct","ctype.h","","int","int"
"isxdigit","ctype.h","","int","int"
"toupper","ctype.h","","int","int"
"tolower","ctype.h","","int","int"
"iswalnum","wctype.h","defined(CONFIG_LIBC_WCHAR)","int","wint_t"
"iswalpha","wctype.h","defined(CONFIG_LIBC_WCHAR)","int","wint_t"
"iswblank","wctype.h","defined(CONFIG_LIBC_WCHAR)","int","wint_t"

Can't render this file because it has a wrong number of fields in line 2.