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

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

int main()
{
	b64_encode("foo", 3, NULL, 2);
	return 0;
}