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 URL_DECODE_H
8 #define URL_ENCODE_H
9 
10 
11 int b64_encode(const char *input, int len, char *output, int buf_len);
12 
13 
14 #endif