12 lines
230 B
C
12 lines
230 B
C
// vim:fileencoding=utf-8:foldmethod=marker
|
|
|
|
#ifndef BASE64_H
|
|
#define BASE64_H
|
|
|
|
#include "../wapp/wapp.h"
|
|
|
|
Str8 *encode(Allocator *allocator, Str8RO *input);
|
|
Str8 *decode(Allocator *allocator, Str8RO *input);
|
|
|
|
#endif // !BASE64_H
|