Nilorea Library
C utilities for networking, threading, graphics
Loading...
Searching...
No Matches
n_base64.h
Go to the documentation of this file.
1
8#ifndef __N_BASE64_H
9#define __N_BASE64_H
10
11#ifdef __cplusplus
12extern "C" {
13#endif
14
20#include <stdlib.h>
21#include <memory.h>
22#include "nilorea/n_str.h"
23
24bool n_isupper(char c);
25bool n_islower(char c);
26bool n_isalpha(char c);
27char n_toupper(char c);
28char n_tolower(char c);
29
31N_STR* n_base64_decode(N_STR* bufcoded);
32
37#ifdef __cplusplus
38}
39#endif
40/* #ifndef __N_BASE64_H */
41#endif
char n_tolower(char c)
is_alpha
Definition n_base64.c:123
N_STR * n_base64_decode(N_STR *bufcoded)
decode a N_STR *string
Definition n_base64.c:168
bool n_isupper(char c)
test if char c is uppercase
Definition n_base64.c:85
char n_toupper(char c)
is_alpha
Definition n_base64.c:112
bool n_islower(char c)
test if char c is lowercase
Definition n_base64.c:94
bool n_isalpha(char c)
is_alpha
Definition n_base64.c:103
N_STR * n_base64_encode(N_STR *string)
encode a N_STR *string
Definition n_base64.c:250
A box including a string and his lenght.
Definition n_str.h:39
N_STR and string function declaration.