admin
2025-04-08 5c9991be21f57781573f04961ec511ac2938ea3d
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once
/*base64.h*/
#ifndef _BASE64_H  
#define _BASE64_H  
 
#include <stdlib.h>  
#include <string.h>  
 
 char* base64_encode(const char* str);
 
 char* base64_decode(const char* code);
 
#endif