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.
AFL/test.c

13 lines
242 B

#include <stdio.h>
#include "argv-fuzz-inl.h"
int main(int argc, char *argv[]) {
AFL_INIT_SET0("a.out");
int i;
printf("argc = %d\n", argc);
for (i = 0; i < argc; i++)
printf("argv[%d] = '%s'\n", i, argv[i]);
return 0;
}