Adds our own, shiny, and almost BeOS compatible parsedate.h header (but not

in the Posix dir).


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@4366 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2003-08-23 18:25:11 +00:00
parent 2605a4f5ef
commit 6f82bba82a
1 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,33 @@
#ifndef _PARSEDATE_H
#define _PARSEDATE_H
/*
** Distributed under the terms of the OpenBeOS License.
*/
#include <time.h>
/* flags that will be set in the flags field by parsedate_etc() */
#define PARSEDATE_RELATIVE_TIME 0x0001
// ToDo: the following flags are not part of the R5 implementation and preliminary only
#define PARSEDATE_DAY_RELATIVE_TIME PARSEDATE_RELATIVE_TIME
#define PARSEDATE_MINUTE_RELATIVE_TIME 0x0002
#define PARSEDATE_INVALID_DATE 0x0100
#ifdef __cplusplus
extern "C" {
#endif
extern time_t parsedate(const char *dateString, time_t now);
extern time_t parsedate_etc(const char *dateString, time_t now, int *_storedFlags);
extern void set_dateformats(const char *table[]);
extern const char **get_dateformats(void);
#ifdef __cplusplus
}
#endif
#endif /* _PARSEDATE_H */