mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-04 04:06:06 -05:00
8 lines
222 B
C
8 lines
222 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
|
|
char *base64_decode(const char *s);
|
|
char *base64_encode(const uint8_t *data, size_t size);
|
|
void base64_encode_final(const uint8_t *data, size_t size, char result[4]);
|