Mercurial > hg > octave-nkf > gnulib-hg
annotate lib/base64.h @ 17907:0a1c2535cad9
euidaccess: Fix Android build
* modules/euidaccess (Depends-on): Add fcntl-h to ensure that
AT_EACCESS gets declared.
author | Kevin Cernekee <cernekee@google.com> |
---|---|
date | Wed, 11 Feb 2015 15:22:54 -0800 |
parents | ab58d4870664 |
children |
rev | line source |
---|---|
5498 | 1 /* base64.h -- Encode binary data using printable characters. |
17848 | 2 Copyright (C) 2004-2006, 2009-2015 Free Software Foundation, Inc. |
5498 | 3 Written by Simon Josefsson. |
4 | |
5 This program is free software; you can redistribute it and/or modify | |
6 it under the terms of the GNU General Public License as published by | |
7 the Free Software Foundation; either version 2, or (at your option) | |
8 any later version. | |
9 | |
10 This program is distributed in the hope that it will be useful, | |
11 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 GNU General Public License for more details. | |
14 | |
15 You should have received a copy of the GNU General Public License | |
16366
bb182ee4a09d
maint: replace FSF snail-mail addresses with URLs
Paul Eggert <eggert@cs.ucla.edu>
parents:
16201
diff
changeset
|
16 along with this program; if not, see <http://www.gnu.org/licenses/>. */ |
5498 | 17 |
18 #ifndef BASE64_H | |
19 # define BASE64_H | |
20 | |
21 /* Get size_t. */ | |
6662
ca817b50a17f
* base64.h: Indent #define's. From Jim Meyering <jim@meyering.net>.
Simon Josefsson <simon@josefsson.org>
parents:
5936
diff
changeset
|
22 # include <stddef.h> |
5498 | 23 |
24 /* Get bool. */ | |
6662
ca817b50a17f
* base64.h: Indent #define's. From Jim Meyering <jim@meyering.net>.
Simon Josefsson <simon@josefsson.org>
parents:
5936
diff
changeset
|
25 # include <stdbool.h> |
5498 | 26 |
17031
8f51efda6717
base64: Use extern C scope in header file, for C++.
Simon Josefsson <simon@josefsson.org>
parents:
16366
diff
changeset
|
27 # ifdef __cplusplus |
8f51efda6717
base64: Use extern C scope in header file, for C++.
Simon Josefsson <simon@josefsson.org>
parents:
16366
diff
changeset
|
28 extern "C" { |
8f51efda6717
base64: Use extern C scope in header file, for C++.
Simon Josefsson <simon@josefsson.org>
parents:
16366
diff
changeset
|
29 # endif |
8f51efda6717
base64: Use extern C scope in header file, for C++.
Simon Josefsson <simon@josefsson.org>
parents:
16366
diff
changeset
|
30 |
5498 | 31 /* This uses that the expression (n+(k-1))/k means the smallest |
32 integer >= n/k, i.e., the ceiling of n/k. */ | |
6662
ca817b50a17f
* base64.h: Indent #define's. From Jim Meyering <jim@meyering.net>.
Simon Josefsson <simon@josefsson.org>
parents:
5936
diff
changeset
|
33 # define BASE64_LENGTH(inlen) ((((inlen) + 2) / 3) * 4) |
5498 | 34 |
10090
8ea8f3be5116
Sync gnulib base64 with coreutils base64.
Simon Josefsson <simon@josefsson.org>
parents:
6662
diff
changeset
|
35 struct base64_decode_context |
8ea8f3be5116
Sync gnulib base64 with coreutils base64.
Simon Josefsson <simon@josefsson.org>
parents:
6662
diff
changeset
|
36 { |
8ea8f3be5116
Sync gnulib base64 with coreutils base64.
Simon Josefsson <simon@josefsson.org>
parents:
6662
diff
changeset
|
37 unsigned int i; |
8ea8f3be5116
Sync gnulib base64 with coreutils base64.
Simon Josefsson <simon@josefsson.org>
parents:
6662
diff
changeset
|
38 char buf[4]; |
8ea8f3be5116
Sync gnulib base64 with coreutils base64.
Simon Josefsson <simon@josefsson.org>
parents:
6662
diff
changeset
|
39 }; |
8ea8f3be5116
Sync gnulib base64 with coreutils base64.
Simon Josefsson <simon@josefsson.org>
parents:
6662
diff
changeset
|
40 |
16128
6beadb731202
mark functions with const and pure attributes
Jim Meyering <meyering@redhat.com>
parents:
14079
diff
changeset
|
41 extern bool isbase64 (char ch) _GL_ATTRIBUTE_CONST; |
5604
f946018d919e
* base64.h (isbase64): Add.
Simon Josefsson <simon@josefsson.org>
parents:
5498
diff
changeset
|
42 |
5498 | 43 extern void base64_encode (const char *restrict in, size_t inlen, |
12421
e8d2c6fc33ad
Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents:
10090
diff
changeset
|
44 char *restrict out, size_t outlen); |
5498 | 45 |
46 extern size_t base64_encode_alloc (const char *in, size_t inlen, char **out); | |
47 | |
10090
8ea8f3be5116
Sync gnulib base64 with coreutils base64.
Simon Josefsson <simon@josefsson.org>
parents:
6662
diff
changeset
|
48 extern void base64_decode_ctx_init (struct base64_decode_context *ctx); |
8ea8f3be5116
Sync gnulib base64 with coreutils base64.
Simon Josefsson <simon@josefsson.org>
parents:
6662
diff
changeset
|
49 |
8ea8f3be5116
Sync gnulib base64 with coreutils base64.
Simon Josefsson <simon@josefsson.org>
parents:
6662
diff
changeset
|
50 extern bool base64_decode_ctx (struct base64_decode_context *ctx, |
12421
e8d2c6fc33ad
Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents:
10090
diff
changeset
|
51 const char *restrict in, size_t inlen, |
e8d2c6fc33ad
Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents:
10090
diff
changeset
|
52 char *restrict out, size_t *outlen); |
5498 | 53 |
10090
8ea8f3be5116
Sync gnulib base64 with coreutils base64.
Simon Josefsson <simon@josefsson.org>
parents:
6662
diff
changeset
|
54 extern bool base64_decode_alloc_ctx (struct base64_decode_context *ctx, |
12421
e8d2c6fc33ad
Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents:
10090
diff
changeset
|
55 const char *in, size_t inlen, |
e8d2c6fc33ad
Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents:
10090
diff
changeset
|
56 char **out, size_t *outlen); |
10090
8ea8f3be5116
Sync gnulib base64 with coreutils base64.
Simon Josefsson <simon@josefsson.org>
parents:
6662
diff
changeset
|
57 |
8ea8f3be5116
Sync gnulib base64 with coreutils base64.
Simon Josefsson <simon@josefsson.org>
parents:
6662
diff
changeset
|
58 #define base64_decode(in, inlen, out, outlen) \ |
12421
e8d2c6fc33ad
Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents:
10090
diff
changeset
|
59 base64_decode_ctx (NULL, in, inlen, out, outlen) |
10090
8ea8f3be5116
Sync gnulib base64 with coreutils base64.
Simon Josefsson <simon@josefsson.org>
parents:
6662
diff
changeset
|
60 |
8ea8f3be5116
Sync gnulib base64 with coreutils base64.
Simon Josefsson <simon@josefsson.org>
parents:
6662
diff
changeset
|
61 #define base64_decode_alloc(in, inlen, out, outlen) \ |
12421
e8d2c6fc33ad
Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents:
10090
diff
changeset
|
62 base64_decode_alloc_ctx (NULL, in, inlen, out, outlen) |
5498 | 63 |
17031
8f51efda6717
base64: Use extern C scope in header file, for C++.
Simon Josefsson <simon@josefsson.org>
parents:
16366
diff
changeset
|
64 # ifdef __cplusplus |
8f51efda6717
base64: Use extern C scope in header file, for C++.
Simon Josefsson <simon@josefsson.org>
parents:
16366
diff
changeset
|
65 } |
8f51efda6717
base64: Use extern C scope in header file, for C++.
Simon Josefsson <simon@josefsson.org>
parents:
16366
diff
changeset
|
66 # endif |
8f51efda6717
base64: Use extern C scope in header file, for C++.
Simon Josefsson <simon@josefsson.org>
parents:
16366
diff
changeset
|
67 |
5498 | 68 #endif /* BASE64_H */ |