cctools
b64_encode.h
1 /*
2 Copyright (C) 2008- The University of Notre Dame
3 This software is distributed under the GNU General Public License.
4 See the file COPYING for details.
5 */
6 
7 #ifndef B64_ENCODE_H
8 #define B64_ENCODE_H
9 
10 #include <stddef.h>
11 
12 int b64_encode(const char *input, size_t len, char *output, size_t buf_len);
13 
14 #endif