mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-18 12:48:06 +00:00
add more string functions for dictionary features
This commit is contained in:
@ -29,6 +29,8 @@ int main(int argc, char **argv) {
|
||||
printf("your string was APRI\n");
|
||||
else if (strcasecmp(input, "Kiwi") == 0)
|
||||
printf("your string was Kiwi\n");
|
||||
else if (strstr(input, "tsala") == 0)
|
||||
printf("your string is a fruit salad\n");
|
||||
else if (strncasecmp(input, "avocado", 9) == 0)
|
||||
printf("your string was avocado\n");
|
||||
else if (strncasecmp(input, "Grapes", argc > 2 ? atoi(argv[2]) : 3) == 0)
|
||||
|
Reference in New Issue
Block a user