17 lines
		
	
	
		
			251 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			251 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef _BASE64_H_
 | |
| #define _BASE64_H_
 | |
| 
 | |
| //#ifdef __cplusplus
 | |
| //extern "C"
 | |
| //{
 | |
| //#endif
 | |
| 
 | |
| int base64_encode(char *out, const char *data, int insize);
 | |
| int base64_decode(char *out, const char *bdata, int insize);
 | |
| 
 | |
| //#ifdef __cplusplus
 | |
| //}
 | |
| //#endif
 | |
| 
 | |
| #endif
 |