base64: initial base64 decode implementation

This commit is contained in:
Daniel Eklöf 2019-07-19 11:11:25 +02:00
parent f2608bf4c9
commit bb8a733758
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
3 changed files with 92 additions and 0 deletions

3
base64.h Normal file
View file

@ -0,0 +1,3 @@
#pragma once
char *base64_decode(const char *s);