1 /* gshell.h - Shell-related utilities
3 * Copyright 2000 Red Hat, Inc.
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library 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 GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public License
16 * along with this library; if not, see <http://www.gnu.org/licenses/>.
22 #if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION)
23 #error "Only <glib.h> can be included directly."
26 #include <glib/gerror.h>
30 #define G_SHELL_ERROR g_shell_error_quark ()
34 /* mismatched or otherwise mangled quoting */
35 G_SHELL_ERROR_BAD_QUOTING
,
36 /* string to be parsed was empty */
37 G_SHELL_ERROR_EMPTY_STRING
,
42 GQuark
g_shell_error_quark (void);
45 gchar
* g_shell_quote (const gchar
*unquoted_string
);
47 gchar
* g_shell_unquote (const gchar
*quoted_string
,
50 gboolean
g_shell_parse_argv (const gchar
*command_line
,
57 #endif /* __G_SHELL_H__ */