Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-b64_decode.c « tests - git.openwrt.org/project/libubox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4798fa8da38055816c0b59fadb09e2d587c29ff9 (plain)
1
2
3
4
5
6
7
#include "utils.h"

int main()
{
	b64_decode("Zg==", NULL, 2);
	return 0;
}