gshell.h 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /* gshell.h - Shell-related utilities
  2. *
  3. * Copyright 2000 Red Hat, Inc.
  4. *
  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.
  9. *
  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.
  14. *
  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/>.
  17. */
  18. #ifndef __G_SHELL_H__
  19. #define __G_SHELL_H__
  20. #if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION)
  21. #error "Only <glib.h> can be included directly."
  22. #endif
  23. #include <glib/gerror.h>
  24. G_BEGIN_DECLS
  25. #define G_SHELL_ERROR g_shell_error_quark ()
  26. typedef enum
  27. {
  28. /* mismatched or otherwise mangled quoting */
  29. G_SHELL_ERROR_BAD_QUOTING,
  30. /* string to be parsed was empty */
  31. G_SHELL_ERROR_EMPTY_STRING,
  32. G_SHELL_ERROR_FAILED
  33. } GShellError;
  34. GLIB_AVAILABLE_IN_ALL
  35. GQuark g_shell_error_quark (void);
  36. GLIB_AVAILABLE_IN_ALL
  37. gchar* g_shell_quote (const gchar *unquoted_string);
  38. GLIB_AVAILABLE_IN_ALL
  39. gchar* g_shell_unquote (const gchar *quoted_string,
  40. GError **error);
  41. GLIB_AVAILABLE_IN_ALL
  42. gboolean g_shell_parse_argv (const gchar *command_line,
  43. gint *argcp,
  44. gchar ***argvp,
  45. GError **error);
  46. G_END_DECLS
  47. #endif /* __G_SHELL_H__ */