1add_libc_fuzzer(
2  strcpy_fuzz
3  SRCS
4    strcpy_fuzz.cpp
5  DEPENDS
6    libc.src.string.memcpy
7    libc.src.string.strcpy
8    libc.src.string.strlen
9)
10
11add_libc_fuzzer(
12  strcmp_fuzz
13  SRCS
14    strcmp_fuzz.cpp
15  DEPENDS
16    libc.src.string.strcmp
17)
18