2002-06-08 07:47:23 +00:00
|
|
|
/* quotearg.h - quote arguments for output
|
2004-07-02 09:18:31 +00:00
|
|
|
|
|
|
|
Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software
|
|
|
|
Foundation, Inc.
|
2002-06-08 07:47:23 +00:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software Foundation,
|
|
|
|
Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
|
|
|
|
|
|
|
/* Written by Paul Eggert <eggert@twinsun.com> */
|
|
|
|
|
2004-07-02 09:18:31 +00:00
|
|
|
#ifndef QUOTEARG_H_
|
|
|
|
# define QUOTEARG_H_ 1
|
|
|
|
|
|
|
|
# include <stddef.h>
|
|
|
|
|
2002-06-08 07:47:23 +00:00
|
|
|
/* Basic quoting styles. */
|
|
|
|
enum quoting_style
|
|
|
|
{
|
|
|
|
literal_quoting_style, /* --quoting-style=literal */
|
|
|
|
shell_quoting_style, /* --quoting-style=shell */
|
|
|
|
shell_always_quoting_style, /* --quoting-style=shell-always */
|
|
|
|
c_quoting_style, /* --quoting-style=c */
|
|
|
|
escape_quoting_style, /* --quoting-style=escape */
|
|
|
|
locale_quoting_style, /* --quoting-style=locale */
|
|
|
|
clocale_quoting_style /* --quoting-style=clocale */
|
|
|
|
};
|
|
|
|
|
|
|
|
/* For now, --quoting-style=literal is the default, but this may change. */
|
2004-07-02 09:18:31 +00:00
|
|
|
# ifndef DEFAULT_QUOTING_STYLE
|
|
|
|
# define DEFAULT_QUOTING_STYLE literal_quoting_style
|
|
|
|
# endif
|
2002-06-08 07:47:23 +00:00
|
|
|
|
|
|
|
/* Names of quoting styles and their corresponding values. */
|
|
|
|
extern char const *const quoting_style_args[];
|
|
|
|
extern enum quoting_style const quoting_style_vals[];
|
|
|
|
|
|
|
|
struct quoting_options;
|
|
|
|
|
|
|
|
/* The functions listed below set and use a hidden variable
|
|
|
|
that contains the default quoting style options. */
|
|
|
|
|
|
|
|
/* Allocate a new set of quoting options, with contents initially identical
|
|
|
|
to O if O is not null, or to the default if O is null.
|
|
|
|
It is the caller's responsibility to free the result. */
|
2004-07-02 09:18:31 +00:00
|
|
|
struct quoting_options *clone_quoting_options (struct quoting_options *o);
|
2002-06-08 07:47:23 +00:00
|
|
|
|
|
|
|
/* Get the value of O's quoting style. If O is null, use the default. */
|
2004-07-02 09:18:31 +00:00
|
|
|
enum quoting_style get_quoting_style (struct quoting_options *o);
|
2002-06-08 07:47:23 +00:00
|
|
|
|
|
|
|
/* In O (or in the default if O is null),
|
|
|
|
set the value of the quoting style to S. */
|
2004-07-02 09:18:31 +00:00
|
|
|
void set_quoting_style (struct quoting_options *o, enum quoting_style s);
|
2002-06-08 07:47:23 +00:00
|
|
|
|
|
|
|
/* In O (or in the default if O is null),
|
|
|
|
set the value of the quoting options for character C to I.
|
|
|
|
Return the old value. Currently, the only values defined for I are
|
|
|
|
0 (the default) and 1 (which means to quote the character even if
|
|
|
|
it would not otherwise be quoted). */
|
2004-07-02 09:18:31 +00:00
|
|
|
int set_char_quoting (struct quoting_options *o, char c, int i);
|
2002-06-08 07:47:23 +00:00
|
|
|
|
|
|
|
/* Place into buffer BUFFER (of size BUFFERSIZE) a quoted version of
|
|
|
|
argument ARG (of size ARGSIZE), using O to control quoting.
|
|
|
|
If O is null, use the default.
|
|
|
|
Terminate the output with a null character, and return the written
|
|
|
|
size of the output, not counting the terminating null.
|
|
|
|
If BUFFERSIZE is too small to store the output string, return the
|
|
|
|
value that would have been returned had BUFFERSIZE been large enough.
|
|
|
|
If ARGSIZE is -1, use the string length of the argument for ARGSIZE. */
|
2004-07-02 09:18:31 +00:00
|
|
|
size_t quotearg_buffer (char *buffer, size_t buffersize,
|
|
|
|
char const *arg, size_t argsize,
|
|
|
|
struct quoting_options const *o);
|
2002-06-08 07:47:23 +00:00
|
|
|
|
|
|
|
/* Use storage slot N to return a quoted version of the string ARG.
|
|
|
|
Use the default quoting options.
|
|
|
|
The returned value points to static storage that can be
|
|
|
|
reused by the next call to this function with the same value of N.
|
|
|
|
N must be nonnegative. */
|
2004-07-02 09:18:31 +00:00
|
|
|
char *quotearg_n (int n, char const *arg);
|
2002-06-08 07:47:23 +00:00
|
|
|
|
|
|
|
/* Equivalent to quotearg_n (0, ARG). */
|
2004-07-02 09:18:31 +00:00
|
|
|
char *quotearg (char const *arg);
|
2002-06-08 07:47:23 +00:00
|
|
|
|
|
|
|
/* Use style S and storage slot N to return a quoted version of the string ARG.
|
|
|
|
This is like quotearg_n (N, ARG), except that it uses S with no other
|
|
|
|
options to specify the quoting method. */
|
2004-07-02 09:18:31 +00:00
|
|
|
char *quotearg_n_style (int n, enum quoting_style s, char const *arg);
|
|
|
|
|
2002-06-08 07:47:23 +00:00
|
|
|
/* Use style S and storage slot N to return a quoted version of the
|
|
|
|
argument ARG of size ARGSIZE. This is like quotearg_n_style
|
|
|
|
(N, S, ARG), except it can quote null bytes. */
|
2004-07-02 09:18:31 +00:00
|
|
|
char *quotearg_n_style_mem (int n, enum quoting_style s,
|
|
|
|
char const *arg, size_t argsize);
|
2002-06-08 07:47:23 +00:00
|
|
|
|
|
|
|
/* Equivalent to quotearg_n_style (0, S, ARG). */
|
2004-07-02 09:18:31 +00:00
|
|
|
char *quotearg_style (enum quoting_style s, char const *arg);
|
2002-06-08 07:47:23 +00:00
|
|
|
|
|
|
|
/* Like quotearg (ARG), except also quote any instances of CH. */
|
2004-07-02 09:18:31 +00:00
|
|
|
char *quotearg_char (char const *arg, char ch);
|
2002-06-08 07:47:23 +00:00
|
|
|
|
|
|
|
/* Equivalent to quotearg_char (ARG, ':'). */
|
2004-07-02 09:18:31 +00:00
|
|
|
char *quotearg_colon (char const *arg);
|
|
|
|
|
|
|
|
#endif /* !QUOTEARG_H_ */
|