223
|
1 set(TARGET_LIBC_ENTRYPOINTS
|
|
2 # ctype.h entrypoints
|
|
3 libc.src.ctype.isalnum
|
|
4 libc.src.ctype.isalpha
|
|
5 libc.src.ctype.isascii
|
|
6 libc.src.ctype.isblank
|
|
7 libc.src.ctype.iscntrl
|
|
8 libc.src.ctype.isdigit
|
|
9 libc.src.ctype.isgraph
|
|
10 libc.src.ctype.islower
|
|
11 libc.src.ctype.isprint
|
|
12 libc.src.ctype.ispunct
|
|
13 libc.src.ctype.isspace
|
|
14 libc.src.ctype.isupper
|
|
15 libc.src.ctype.isxdigit
|
|
16 libc.src.ctype.toascii
|
|
17 libc.src.ctype.tolower
|
|
18 libc.src.ctype.toupper
|
|
19 # string.h entrypoints
|
|
20 libc.src.string.bzero
|
|
21 libc.src.string.memchr
|
|
22 libc.src.string.memcmp
|
|
23 libc.src.string.memcpy
|
|
24 libc.src.string.memmove
|
|
25 libc.src.string.memset
|
|
26 libc.src.string.memrchr
|
|
27 libc.src.string.strcat
|
|
28 libc.src.string.strchr
|
|
29 libc.src.string.strcpy
|
|
30 libc.src.string.strcmp
|
|
31 libc.src.string.strcspn
|
|
32 libc.src.string.strlen
|
|
33 libc.src.string.strncpy
|
|
34 libc.src.string.strnlen
|
|
35 libc.src.string.strpbrk
|
|
36 libc.src.string.strrchr
|
|
37 libc.src.string.strspn
|
|
38 libc.src.string.strstr
|
|
39 libc.src.string.strtok
|
|
40 libc.src.string.strtok_r
|
|
41 )
|
|
42 set(TARGET_LLVMLIBC_ENTRYPOINTS
|
|
43 ${TARGET_LIBC_ENTRYPOINTS}
|
|
44 )
|