mirror of
https://github.com/curl/curl.git
synced 2026-08-25 16:33:38 +03:00
parent
1753de9d7a
commit
0417d323c9
52 changed files with 490 additions and 543 deletions
|
|
@ -27,8 +27,8 @@
|
|||
|
||||
#if defined(_WIN32) || defined(MSDOS)
|
||||
|
||||
#define SANITIZE_ALLOW_PATH (1<<1) /* Allow path separators and colons */
|
||||
#define SANITIZE_ALLOW_RESERVED (1<<2) /* Allow reserved device names */
|
||||
#define SANITIZE_ALLOW_PATH (1 << 1) /* Allow path separators and colons */
|
||||
#define SANITIZE_ALLOW_RESERVED (1 << 2) /* Allow reserved device names */
|
||||
|
||||
typedef enum {
|
||||
SANITIZE_ERR_OK = 0, /* 0 - OK */
|
||||
|
|
@ -38,7 +38,7 @@ typedef enum {
|
|||
SANITIZE_ERR_LAST /* never use! */
|
||||
} SANITIZEcode;
|
||||
|
||||
SANITIZEcode sanitize_file_name(char **const sanitized, const char *file_name,
|
||||
SANITIZEcode sanitize_file_name(char ** const sanitized, const char *file_name,
|
||||
int flags);
|
||||
|
||||
#ifdef __DJGPP__
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue