Codebase list jo / lintian-fixes/main base64.h
lintian-fixes/main

Tree @lintian-fixes/main (Download .tar.gz)

base64.h @lintian-fixes/mainraw · history · blame

1
2
3
4
5
6
7
8
9
#ifndef BASE64_H_GUARD
#define BASE64_H_GUARD

#include <stddef.h>

char* base64_encode(const void* buf, size_t size);
void* base64_decode(const char* s, size_t *data_len);

#endif