summaryrefslogtreecommitdiff
path: root/lib/parsedate.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-09-11 09:24:02 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-09-11 09:24:02 +0000
commitf6433211ae9afb30ec461e6633dafc6d8c77eaa9 (patch)
treedde00a5be7f4221893ce545b96c8ff9e0d1f9f64 /lib/parsedate.h
parent0ec4c66fbaea2d024e4efa16a608e9099ef49de3 (diff)
downloadcurl-f6433211ae9afb30ec461e6633dafc6d8c77eaa9.tar.gz
getdate replacement code. smaller, slicker, faster.
Diffstat (limited to 'lib/parsedate.h')
-rw-r--r--lib/parsedate.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/lib/parsedate.h b/lib/parsedate.h
new file mode 100644
index 000000000..da33c45d7
--- /dev/null
+++ b/lib/parsedate.h
@@ -0,0 +1,28 @@
+#ifndef __PARSEDATE_H
+#define __PARSEDATE_H
+/***************************************************************************
+ * _ _ ____ _
+ * Project ___| | | | _ \| |
+ * / __| | | | |_) | |
+ * | (__| |_| | _ <| |___
+ * \___|\___/|_| \_\_____|
+ *
+ * Copyright (C) 1998 - 2004, Daniel Stenberg, <daniel@haxx.se>, et al.
+ *
+ * This software is licensed as described in the file COPYING, which
+ * you should have received as part of this distribution. The terms
+ * are also available at http://curl.haxx.se/docs/copyright.html.
+ *
+ * You may opt to use, copy, modify, merge, publish, distribute and/or sell
+ * copies of the Software, and permit persons to whom the Software is
+ * furnished to do so, under the terms of the COPYING file.
+ *
+ * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
+ * KIND, either express or implied.
+ *
+ * $Id$
+ ***************************************************************************/
+
+time_t Curl_parsedate(const char *date);
+
+#endif