#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include "utils.h"
Go to the source code of this file.
◆ BUF_LEN
◆ main()
Definition at line 25 of file test-b64.c.
static void test_b64_decode(const char *src)
static void test_b64_encode(const char *src)
◆ test_b64_decode()
static void test_b64_decode |
( |
const char * |
src | ) |
|
|
static |
Definition at line 17 of file test-b64.c.
21 fprintf(stdout,
"%d %s\n", r, dst);
int b64_decode(const void *_src, void *dest, size_t targsize)
◆ test_b64_encode()
static void test_b64_encode |
( |
const char * |
src | ) |
|
|
static |
Definition at line 9 of file test-b64.c.
13 fprintf(stdout,
"%d %s\n", r, dst);
int b64_encode(const void *_src, size_t srclength, void *dest, size_t targsize)