You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
374 B

add_libc_fuzzer(
strcmp_fuzz
SRCS
strcmp_fuzz.cpp
DEPENDS
libc.src.string.strcmp
)
add_libc_fuzzer(
strcpy_fuzz
SRCS
strcpy_fuzz.cpp
DEPENDS
libc.src.string.memcpy
libc.src.string.strcpy
libc.src.string.strlen
)
add_libc_fuzzer(
strstr_fuzz
SRCS
strstr_fuzz.cpp
DEPENDS
libc.src.string.strstr
libc.src.string.strlen
)