[libc] [obvious] Add ctype functions to linux api.
authorChris Gyurgyik <37983775+cgyurgyik@users.noreply.github.com>
Wed, 5 Aug 2020 15:05:50 +0000 (11:05 -0400)
committerGitHub <noreply@github.com>
Wed, 5 Aug 2020 15:05:50 +0000 (11:05 -0400)
Adds isspace, isprint, and isxdigit to Linux API to fix failed integration test.

libc/config/linux/api.td

index a57c703..71b592d 100644 (file)
@@ -95,8 +95,11 @@ def CTypeAPI : PublicAPI<"ctype.h"> {
     "isdigit",
     "isgraph",
     "islower",
+    "isprint",
     "ispunct",
+    "isspace",
     "isupper",
+    "isxdigit",
   ];
 }