fix caching bug, thankt to rrichards
[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-2007, 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 #define http_date(t) _http_date((t) TSRMLS_CC)
19 PHP_HTTP_API char *_http_date(time_t t TSRMLS_DC);
20
21 #define http_parse_date(d) _http_parse_date_ex((d), 0 TSRMLS_CC)
22 #define http_parse_date_ex(d, s) _http_parse_date_ex((d), (s) TSRMLS_CC)
23 PHP_HTTP_API time_t _http_parse_date_ex(const char *date, zend_bool silent TSRMLS_DC);
24
25 #endif
26
27 /*
28 * Local variables:
29 * tab-width: 4
30 * c-basic-offset: 4
31 * End:
32 * vim600: noet sw=4 ts=4 fdm=marker
33 * vim<600: noet sw=4 ts=4
34 */
35