@@ -20,12 +20,50 @@ set(TARGET_LIBC_ENTRYPOINTS
2020 libc.src.ctype.tolower
2121 libc.src.ctype.toupper
2222
23+ # ctype.h entrypoints
24+ libc.src.ctype.isalnum_l
25+ libc.src.ctype.isalpha_l
26+ libc.src.ctype.isblank_l
27+ libc.src.ctype.iscntrl_l
28+ libc.src.ctype.isdigit_l
29+ libc.src.ctype.isgraph_l
30+ libc.src.ctype.islower_l
31+ libc.src.ctype.isprint_l
32+ libc.src.ctype.ispunct_l
33+ libc.src.ctype.isspace_l
34+ libc.src.ctype.isupper_l
35+ libc.src.ctype.isxdigit_l
36+ libc.src.ctype.tolower_l
37+ libc.src.ctype.toupper_l
38+
39+ # stdlib.h entrypoints
40+ libc.src.stdlib.strtod_l
41+ libc.src.stdlib.strtof_l
42+ libc.src.stdlib.strtol_l
43+ libc.src.stdlib.strtold_l
44+ libc.src.stdlib.strtoll_l
45+ libc.src.stdlib.strtoul_l
46+ libc.src.stdlib.strtoull_l
47+
48+ # string.h entrypoints
49+ libc.src.string.strcoll_l
50+ libc.src.string.strxfrm_l
51+
2352 # compiler entrypoints (no corresponding header)
2453 libc.src.compiler.__stack_chk_fail
2554
2655 # errno.h entrypoints
2756 libc.src.errno.errno
2857
58+ # locale.h entrypoints
59+ libc.src.locale.localeconv
60+ libc.src.locale.duplocale
61+ libc.src.locale.freelocale
62+ libc.src.locale.localeconv
63+ libc.src.locale.newlocale
64+ libc.src.locale.setlocale
65+ libc.src.locale.uselocale
66+
2967 # setjmp.h entrypoints
3068 libc.src.setjmp.longjmp
3169 libc.src.setjmp.setjmp
0 commit comments