mirror of
				https://github.com/eledio-devices/thirdparty-ArduinoJson.git
				synced 2025-10-31 08:42:39 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			290 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			290 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #include <ArduinoJson.h>
 | |
| 
 | |
| extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
 | |
|   DynamicJsonDocument doc(4096);
 | |
|   DeserializationError error = deserializeMsgPack(doc, data, size);
 | |
|   if (!error) {
 | |
|     std::string json;
 | |
|     serializeMsgPack(doc, json);
 | |
|   }
 | |
|   return 0;
 | |
| }
 |