rsstats 0.0.1
Redis Enterprise Statistic collector
base64.h
Go to the documentation of this file.
1
21#ifndef __BASE64_H__
22#define __BASE64_H__
23
35char* base64_encode(char* plain);
36
48char* base64_decode(char* cipher);
49
50#endif /* __BASE64_H__ */
51
52/* vim: set tw=80: */
char * base64_encode(char *plain)
Encode a zero terminated C string in Base64.
Definition: base64.c:39
char * base64_decode(char *cipher)
Decode a zero terminated C Base64 encoded string.
Definition: base64.c:77