Recreate base64 project

This commit is contained in:
2025-08-10 23:30:27 +01:00
commit e90d14344e
63 changed files with 11139 additions and 0 deletions

11
base64/base64.h Normal file
View File

@@ -0,0 +1,11 @@
// 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