- relicense with a BSD style license
[m6w6/ext-http] / php_http_date_api.h
1 /*
2 +--------------------------------------------------------------------+
3 | PECL :: http |
4 +--------------------------------------------------------------------+
5 | Redistribution and use in source and binary forms, with or without |
6 | modification, are permitted provided that the conditions mentioned |
7 | in the accompanying LICENSE file are met. |
8 +--------------------------------------------------------------------+
9 | Copyright (c) 2004-2005, Michael Wallner <mike@php.net> |
10 +--------------------------------------------------------------------+
11 */
12
13 /* $Id$ */
14
15 #ifndef PHP_HTTP_DATE_API_H
16 #define PHP_HTTP_DATE_API_H
17
18 #include "php_http_std_defs.h"
19
20 #define http_date(t) _http_date((t) TSRMLS_CC)
21 PHP_HTTP_API char *_http_date(time_t t TSRMLS_DC);
22
23 #define http_parse_date(d) _http_parse_date((d))
24 PHP_HTTP_API time_t _http_parse_date(const char *date);
25
26 #endif
27
28 /*
29 * Local variables:
30 * tab-width: 4
31 * c-basic-offset: 4
32 * End:
33 * vim600: noet sw=4 ts=4 fdm=marker
34 * vim<600: noet sw=4 ts=4
35 */
36