"Fossies" - the Fresh Open Source Software Archive 
Member "memcached-1.6.15/base64.h" (21 Feb 2022, 487 Bytes) of package /linux/www/memcached-1.6.15.tar.gz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style:
standard) with prefixed line numbers and
code folding option.
Alternatively you can here
view or
download the uninterpreted source code file.
For more information about "base64.h" see the
Fossies "Dox" file reference documentation.
1 /*
2 * Base64 encoding/decoding (RFC1341)
3 * Copyright (c) 2005, Jouni Malinen <j@w1.fi>
4 *
5 * This software may be distributed under the terms of the BSD license.
6 * See base64.c for more details
7 */
8
9 #ifndef BASE64_H
10 #define BASE64_H
11
12 size_t base64_encode(const unsigned char *src, size_t len,
13 unsigned char *out, size_t out_len);
14 size_t base64_decode(const unsigned char *src, size_t len,
15 unsigned char *out, size_t out_len);
16
17 #endif /* BASE64_H */