1add_libc_fuzzer(
2  strcmp_fuzz
3  SRCS
4    strcmp_fuzz.cpp
5  DEPENDS
6    libc.src.string.strcmp
7)
8
9add_libc_fuzzer(
10  strcpy_fuzz
11  SRCS
12    strcpy_fuzz.cpp
13  DEPENDS
14    libc.src.string.memcpy
15    libc.src.string.strcpy
16    libc.src.string.strlen
17)
18
19add_libc_fuzzer(
20  strstr_fuzz
21  SRCS
22    strstr_fuzz.cpp
23  DEPENDS
24    libc.src.string.strstr
25    libc.src.string.strlen
26)
27