Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
ee3fc423
...
ee3fc423005e736f8c8ee5639c63aa523cb8b080
authored
2002-04-10 13:24:31 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Proto for util_wcard_match() and defines for its return values.
1 parent
bc6cdf65
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
5 deletions
imap4d/imap4d.h
imap4d/imap4d.h
View file @
ee3fc42
...
...
@@ -132,6 +132,11 @@ struct imap4d_command
#define NS_SHARED 2
#define NS_MAX 3
/* Wildcard return codes */
#define WCARD_NOMATCH 0
#define WCARD_MATCH 1
#define WCARD_RECURSE_MATCH 2
extern
struct
imap4d_command
imap4d_command_table
[];
extern
FILE
*
ifile
;
extern
FILE
*
ofile
;
...
...
@@ -227,11 +232,19 @@ extern int util_parse_ctime_date __P((const char *date, time_t *timep));
extern
char
*
util_strcasestr
__P
((
const
char
*
haystack
,
const
char
*
needle
));
extern
int
util_parse_attributes
__P
((
char
*
items
,
char
**
save
,
int
*
flags
));
int
util_base64_encode
__P
((
const
unsigned
char
*
input
,
size_t
input_len
,
unsigned
char
**
output
,
size_t
*
output_len
));
int
util_base64_decode
__P
((
const
unsigned
char
*
input
,
size_t
input_len
,
unsigned
char
**
output
,
size_t
*
output_len
));
char
*
util_localname
__P
((
void
));
extern
int
util_base64_encode
__P
((
const
unsigned
char
*
input
,
size_t
input_len
,
unsigned
char
**
output
,
size_t
*
output_len
));
extern
int
util_base64_decode
__P
((
const
unsigned
char
*
input
,
size_t
input_len
,
unsigned
char
**
output
,
size_t
*
output_len
));
extern
char
*
util_localname
__P
((
void
));
extern
int
util_wcard_match
__P
((
const
char
*
string
,
const
char
*
pattern
,
const
char
*
delim
));
#ifdef __cplusplus
}
...
...
Please
register
or
sign in
to post a comment