aboutsummaryrefslogtreecommitdiff
path: root/base64.h
blob: 6ca0f189dc825fbf502d78febac9c1613284a398 (plain) (blame)
1
2
3
4
5
6
7
8
9
#ifndef BASE64_H
#define BASE64_H

#include <stddef.h>

char *base64_encode(const void *buf, size_t n);
void *base64_decode(const char *b64, size_t *n);

#endif /* BASE64_H */