0/** For module */
1#import "Basic";
2#import "String";
3#import "Print_Vars";
5#load "basics.jai";
6#load "../search/http.jai";
9#program_export
10LLVMFuzzerTestOneInput :: (data: *u8, size: s64) -> s32 #c_call {
11 provide_context_and_string();
13 ok := test__http_handle_request(-1, src);
15 if ok == false {
16 report_to_llvm("ERROR", src);
17 assert(false);
18 }
20 return 0;
21}