mc/src/strescape.h
Sergei Trofimovich 3a7de274e0 src/strescape.{c,h}: sanitized fn proto to keep in sync with rest of code
Signed-off-by: Sergei Trofimovich <slyfox@inbox.ru>
2009-07-17 12:00:02 +03:00

33 lines
1.1 KiB
C

#ifndef MC__STRUTILS_ESCAPE_H
#define MC__STRUTILS_ESCAPE_H
#include <config.h>
#include "../src/global.h" /* <glib.h> */
/*** typedefs(not structures) and defined constants **********************************************/
/*** enums ***************************************************************************************/
/*** structures declarations (and typedefs of structures)*****************************************/
/*** global variables defined in .c file *********************************************************/
/*** declarations of public functions ************************************************************/
char *strutils_escape (const char *, gsize, const char *, gboolean);
char *strutils_unescape (const char *, gsize, const char *, gboolean);
char *strutils_shell_unescape (const char *);
char *strutils_shell_escape (const char *);
char *strutils_glob_escape (const char *);
char *strutils_glob_unescape (const char *);
char *strutils_regex_escape (const char *);
char *strutils_regex_unescape (const char *);
gboolean strutils_is_char_escaped (const char *, const char *);
#endif