mirror of https://github.com/linuxdeepin/linglong
21 lines
449 B
Plaintext
21 lines
449 B
Plaintext
#ifndef INCLUDE_BINARY_H
|
|
#define INCLUDE_BINARY_H
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef struct binary_t
|
|
{
|
|
uint8_t* data;
|
|
unsigned int len;
|
|
char *filename;
|
|
char *filepath;
|
|
} binary_t;
|
|
|
|
binary_t* instantiate_binary_t(char* data, int len);
|
|
|
|
char *base64encode(const void *b64_encode_this, int encode_this_many_bytes);
|
|
|
|
char *base64decode(const void *b64_decode_this, int decode_this_many_bytes, int *decoded_bytes);
|
|
|
|
#endif // INCLUDE_BINARY_H
|