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
+15
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"
1 __errno errno.h defined(CONFIG_BUILD_FLAT) FAR int *
75 inet_ntoa arpa/inet.h defined(CONFIG_NET_IPv4) FAR char *
76 inet_ntop arpa/inet.h FAR const char
77 inet_pton arpa/inet.h int
78 isspace ctype.h int
79 isascii ctype.h int
80 isprint ctype.h int
81 isgraph ctype.h int
82 iscntrl ctype.h int
83 islower ctype.h int
84 isupper ctype.h int
85 isalpha ctype.h int
86 isblank ctype.h int
87 isdigit ctype.h int
88 isalnum ctype.h int
89 ispunct ctype.h int
90 isxdigit ctype.h int
91 toupper ctype.h int
92 tolower ctype.h int
93 iswalnum wctype.h defined(CONFIG_LIBC_WCHAR) int
94 iswalpha wctype.h defined(CONFIG_LIBC_WCHAR) int
95 iswblank wctype.h defined(CONFIG_LIBC_WCHAR) int