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
e8343196
...
e8343196f108e5a52dbd8c2ff56015fcc6434000
authored
2001-06-15 02:44:57 +0000
by
Sam Roberts
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Prototypes for functions to parse rfc822 date-time.
1 parent
5e063591
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletions
include/mailutils/parse822.h
include/mailutils/parse822.h
View file @
e834319
...
...
@@ -70,7 +70,6 @@ extern int parse822_word __P ((const char** p, const char* e, char** w
extern
int
parse822_phrase
__P
((
const
char
**
p
,
const
char
*
e
,
char
**
phrase
));
extern
int
parse822_d_text
__P
((
const
char
**
p
,
const
char
*
e
,
char
**
dtext
));
/* From RFC 822, 6.1 Address Specification Syntax */
extern
int
parse822_address_list
__P
((
address_t
*
a
,
const
char
*
s
));
...
...
@@ -99,6 +98,15 @@ extern int parse822_quote_local_part __P ((char** quoted, const char* raw));
extern
int
parse822_field_body
__P
((
const
char
**
p
,
const
char
*
e
,
char
**
fieldbody
));
extern
int
parse822_field_name
__P
((
const
char
**
p
,
const
char
*
e
,
char
**
fieldname
));
/***** From RFC 822, 5.1 Date and Time Specification Syntax *****/
extern
int
parse822_day
__P
((
const
char
**
p
,
const
char
*
e
,
int
*
day
));
extern
int
parse822_date
__P
((
const
char
**
p
,
const
char
*
e
,
int
*
day
,
int
*
mon
,
int
*
year
));
extern
int
parse822_time
__P
((
const
char
**
p
,
const
char
*
e
,
int
*
h
,
int
*
m
,
int
*
s
,
int
*
tz
,
const
char
**
tzname
));
extern
int
parse822_date_time
__P
((
const
char
**
p
,
const
char
*
e
,
struct
tm
*
tm
));
#ifdef __cplusplus
}
#endif
...
...
Please
register
or
sign in
to post a comment