strescape.h 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. #ifndef MC__STRUTILS_ESCAPE_H
  2. #define MC__STRUTILS_ESCAPE_H
  3. #include <config.h>
  4. #include "lib/global.h" /* <glib.h> */
  5. /*** typedefs(not structures) and defined constants **********************************************/
  6. /*** enums ***************************************************************************************/
  7. /*** structures declarations (and typedefs of structures)*****************************************/
  8. /*** global variables defined in .c file *********************************************************/
  9. /*** declarations of public functions ************************************************************/
  10. char *strutils_escape (const char *, gsize, const char *, gboolean);
  11. char *strutils_unescape (const char *, gsize, const char *, gboolean);
  12. char *strutils_shell_unescape (const char *);
  13. char *strutils_shell_escape (const char *);
  14. char *strutils_glob_escape (const char *);
  15. char *strutils_glob_unescape (const char *);
  16. char *strutils_regex_escape (const char *);
  17. char *strutils_regex_unescape (const char *);
  18. gboolean strutils_is_char_escaped (const char *, const char *);
  19. #endif