libubox
C utility functions for OpenWrt.
test-b64_decode.c
Go to the documentation of this file.
1 #include "utils.h"
2 
3 int main()
4 {
5  b64_decode("Zg==", NULL, 2);
6  return 0;
7 }
int b64_decode(const void *_src, void *dest, size_t targsize)
Definition: base64.c:203
int main()