mirror of
https://github.com/opa334/TrollStore.git
synced 2024-12-04 15:00:39 +08:00
11 lines
227 B
C
11 lines
227 B
C
#ifndef BASE64_H
|
|
#define BASE64_H
|
|
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
|
|
char *base64_encode(const unsigned char *data,
|
|
size_t input_length,
|
|
size_t *output_length);
|
|
|
|
#endif // BASE64_H
|