Better UI

PUBLISHED_FROM=50f0cafa84cd06428f0da376d85766dcf62af9da
This commit is contained in:
Sergey Lyubka 2019-07-12 13:28:20 +01:00 committed by Cesanta Bot
parent 1a38e91042
commit ff4649fe42

8
test/fuzz.c Normal file
View File

@ -0,0 +1,8 @@
#include "mongoose.h"
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
struct http_message req;
mg_parse_http((const char *) data, size, &req, 0);
mg_parse_http((const char *) data, size, &req, 1);
return 0;
}