admin
2023-12-04 1a8f39e83dd72e1a672f83e151c149d15679c3eb
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