mirror of
				https://github.com/eledio-devices/thirdparty-ArduinoJson.git
				synced 2025-10-31 16:14:11 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			225 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			225 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
| * Arduino JSON library
 | |
| * Benoit Blanchon 2014 - MIT License
 | |
| */
 | |
| 
 | |
| #include <string.h>
 | |
| 
 | |
| #include "JsonArray.h"
 | |
| 
 | |
| void JsonArray::writeTo(char* buffer, size_t bufferSize)
 | |
| {
 | |
|     strncpy(buffer, "[]", bufferSize);
 | |
| 
 | |
| } |