mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-24 06:10:12 +00:00
[libc] [Obvious] Place entrypoints, specs alphabetically.
This commit is contained in:
parent
679158e662
commit
51eeeb477f
@ -4,16 +4,16 @@ set(TARGET_LIBC_ENTRYPOINTS
|
||||
|
||||
# string.h entrypoints
|
||||
libc.src.string.bzero
|
||||
libc.src.string.memchr
|
||||
libc.src.string.memcpy
|
||||
libc.src.string.memset
|
||||
libc.src.string.strcpy
|
||||
libc.src.string.strcat
|
||||
libc.src.string.strlen
|
||||
libc.src.string.memchr
|
||||
libc.src.string.strchr
|
||||
libc.src.string.strstr
|
||||
libc.src.string.strnlen
|
||||
libc.src.string.memrchr
|
||||
libc.src.string.strcat
|
||||
libc.src.string.strchr
|
||||
libc.src.string.strcpy
|
||||
libc.src.string.strlen
|
||||
libc.src.string.strnlen
|
||||
libc.src.string.strstr
|
||||
)
|
||||
|
||||
set(TARGET_LIBM_ENTRYPOINTS
|
||||
|
@ -194,30 +194,30 @@ def MathAPI : PublicAPI<"math.h"> {
|
||||
def StringAPI : PublicAPI<"string.h"> {
|
||||
let Functions = [
|
||||
"bzero",
|
||||
"memchr",
|
||||
"memcmp",
|
||||
"memcpy",
|
||||
"memmove",
|
||||
"memcmp",
|
||||
"memchr",
|
||||
"memrchr",
|
||||
"memset",
|
||||
"strcpy",
|
||||
"strncpy",
|
||||
"strcat",
|
||||
"strncat",
|
||||
"strchr",
|
||||
"strcmp",
|
||||
"strcoll",
|
||||
"strcpy",
|
||||
"strcspn",
|
||||
"strerror",
|
||||
"strlen",
|
||||
"strncat",
|
||||
"strncmp",
|
||||
"strxfrm",
|
||||
"strchr",
|
||||
"strcspn",
|
||||
"strncpy",
|
||||
"strnlen",
|
||||
"strpbrk",
|
||||
"strrchr",
|
||||
"strspn",
|
||||
"strstr",
|
||||
"strtok",
|
||||
"strerror",
|
||||
"strlen",
|
||||
"strnlen",
|
||||
"memrchr"
|
||||
"strxfrm",
|
||||
];
|
||||
|
||||
let TypeDeclarations = [
|
||||
|
@ -21,17 +21,17 @@ set(TARGET_LIBC_ENTRYPOINTS
|
||||
|
||||
# string.h entrypoints
|
||||
libc.src.string.bzero
|
||||
libc.src.string.memcpy
|
||||
libc.src.string.memset
|
||||
libc.src.string.strcpy
|
||||
libc.src.string.strcat
|
||||
libc.src.string.strlen
|
||||
libc.src.string.strcmp
|
||||
libc.src.string.memchr
|
||||
libc.src.string.strchr
|
||||
libc.src.string.strstr
|
||||
libc.src.string.strnlen
|
||||
libc.src.string.memcpy
|
||||
libc.src.string.memrchr
|
||||
libc.src.string.memset
|
||||
libc.src.string.strcat
|
||||
libc.src.string.strchr
|
||||
libc.src.string.strcmp
|
||||
libc.src.string.strcpy
|
||||
libc.src.string.strlen
|
||||
libc.src.string.strnlen
|
||||
libc.src.string.strstr
|
||||
|
||||
# sys/mman.h entrypoints
|
||||
libc.src.sys.mman.mmap
|
||||
|
Loading…
Reference in New Issue
Block a user