finalize SASL, move all IRC-related includes to a specific folder

This commit is contained in:
thorium1256
2026-05-14 16:35:10 +03:00
parent 634366a875
commit da3aef1468
12 changed files with 272 additions and 43 deletions

9
include/base64.h Normal file
View File

@@ -0,0 +1,9 @@
#ifndef BASE64_H
#define BASE64_H
#include <stddef.h>
#include <stdint.h>
int base64_encode(const uint8_t *in, size_t in_len, char *out, size_t out_size);
#endif