Import upstream version 1.28
[debian/tar] / gnu / quote.h
1 /* -*- buffer-read-only: t -*- vi: set ro: */
2 /* DO NOT EDIT! GENERATED AUTOMATICALLY! */
3 /* quote.h - prototypes for quote.c
4
5    Copyright (C) 1998-2001, 2003, 2009-2014 Free Software Foundation, Inc.
6
7    This program is free software: you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 3 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
19
20 #ifndef QUOTE_H_
21 # define QUOTE_H_ 1
22
23 # include <stddef.h>
24
25 /* The quoting options used by quote_n and quote.  Its type is incomplete,
26    so it's useful only in expressions like '&quote_quoting_options'.  */
27 extern struct quoting_options quote_quoting_options;
28
29 /* Return an unambiguous printable representation of ARG (of size
30    ARGSIZE), allocated in slot N, suitable for diagnostics.  If
31    ARGSIZE is SIZE_MAX, use the string length of the argument for
32    ARGSIZE.  */
33 char const *quote_n_mem (int n, char const *arg, size_t argsize);
34
35 /* Return an unambiguous printable representation of ARG (of size
36    ARGSIZE), suitable for diagnostics.  If ARGSIZE is SIZE_MAX, use
37    the string length of the argument for ARGSIZE.  */
38 char const *quote_mem (char const *arg, size_t argsize);
39
40 /* Return an unambiguous printable representation of ARG, allocated in
41    slot N, suitable for diagnostics.  */
42 char const *quote_n (int n, char const *arg);
43
44 /* Return an unambiguous printable representation of ARG, suitable for
45    diagnostics.  */
46 char const *quote (char const *arg);
47
48 #endif /* !QUOTE_H_ */