1 #include <stdlib.h> 2 3 #include "node.h" 4 #include "node_internals.h" 5 #include "node_url.h" 6 LLVMFuzzerTestOneInput(const uint8_t * data,size_t size)7extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) { 8 node::url::URL url2(reinterpret_cast<const char*>(data), size); 9 10 return 0; 11 } 12