comparison src/lib/base64.h @ 6410:e4eb71ae8e96 HEAD

Changed .h ifdef/defines to use <NAME>_H format.
author Timo Sirainen <tss@iki.fi>
date Sun, 16 Sep 2007 11:31:27 +0300
parents 6b0fe0f93896
children
comparison
equal deleted inserted replaced
6409:7f733ba453bf 6410:e4eb71ae8e96
1 #ifndef __BASE64_H 1 #ifndef BASE64_H
2 #define __BASE64_H 2 #define BASE64_H
3 3
4 /* Translates binary data into base64. The src must not point to dest buffer. */ 4 /* Translates binary data into base64. The src must not point to dest buffer. */
5 void base64_encode(const void *src, size_t src_size, buffer_t *dest); 5 void base64_encode(const void *src, size_t src_size, buffer_t *dest);
6 6
7 /* Translates base64 data into binary and appends it to dest buffer. dest may 7 /* Translates base64 data into binary and appends it to dest buffer. dest may