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
bf065410
...
bf0654100a19e122c23838418d90012200a9999f
authored
2001-06-20 01:31:18 +0000
by
Sam Roberts
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
parse82_date_time() now uses the mu_timezone structure for portability.
1 parent
1d484eea
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
include/mailutils/parse822.h
include/mailutils/parse822.h
View file @
bf06541
...
...
@@ -23,6 +23,7 @@
#define _MAILUTILS_PARSE822_H
#include <mailutils/address.h>
#include <mailutils/mutil.h>
#ifndef __P
# ifdef __STDC__
...
...
@@ -104,7 +105,7 @@ extern int parse822_field_name __P ((const char** p, const char *e, char**
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
));
extern
int
parse822_date_time
__P
((
const
char
**
p
,
const
char
*
e
,
struct
tm
*
tm
,
mu_timezone
*
tz
));
#ifdef __cplusplus
...
...
Please
register
or
sign in
to post a comment