forked from MidnightCommander/mc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstrescape.h
32 lines (19 loc) · 1.09 KB
/
strescape.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#ifndef MC__STRUTILS_ESCAPE_H
#define MC__STRUTILS_ESCAPE_H
#include <config.h>
#include "lib/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