Commit bf065410 bf0654100a19e122c23838418d90012200a9999f by Sam Roberts

parse82_date_time() now uses the mu_timezone structure for portability.

1 parent 1d484eea
......@@ -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
......