You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pEpEngine/src/base64.h

18 lines
274 B

// This file is under GNU General Public License 3.0
// see LICENSE.txt
#pragma once
#include "dynamic_api.h"
#include "bloblist.h"
#ifdef __cplusplus
extern "C" {
#endif
bloblist_t* base64_str_to_binary_blob(const char* input, int length);
#ifdef __cplusplus
}
#endif