1*0c3983b2SBen Gras /* $NetBSD: compat_parsedate.c,v 1.2 2009/01/11 02:57:18 christos Exp $ */
2*0c3983b2SBen Gras
3*0c3983b2SBen Gras /*-
4*0c3983b2SBen Gras * Copyright (c) 2008 The NetBSD Foundation, Inc.
5*0c3983b2SBen Gras * All rights reserved.
6*0c3983b2SBen Gras *
7*0c3983b2SBen Gras * This code is derived from software contributed to The NetBSD Foundation
8*0c3983b2SBen Gras * by Christos Zoulas.
9*0c3983b2SBen Gras *
10*0c3983b2SBen Gras * Redistribution and use in source and binary forms, with or without
11*0c3983b2SBen Gras * modification, are permitted provided that the following conditions
12*0c3983b2SBen Gras * are met:
13*0c3983b2SBen Gras * 1. Redistributions of source code must retain the above copyright
14*0c3983b2SBen Gras * notice, this list of conditions and the following disclaimer.
15*0c3983b2SBen Gras * 2. Redistributions in binary form must reproduce the above copyright
16*0c3983b2SBen Gras * notice, this list of conditions and the following disclaimer in the
17*0c3983b2SBen Gras * documentation and/or other materials provided with the distribution.
18*0c3983b2SBen Gras * 3. All advertising materials mentioning features or use of this software
19*0c3983b2SBen Gras * must display the following acknowledgement:
20*0c3983b2SBen Gras * This product includes software developed by the NetBSD
21*0c3983b2SBen Gras * Foundation, Inc. and its contributors.
22*0c3983b2SBen Gras * 4. Neither the name of The NetBSD Foundation nor the names of its
23*0c3983b2SBen Gras * contributors may be used to endorse or promote products derived
24*0c3983b2SBen Gras * from this software without specific prior written permission.
25*0c3983b2SBen Gras *
26*0c3983b2SBen Gras * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27*0c3983b2SBen Gras * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28*0c3983b2SBen Gras * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29*0c3983b2SBen Gras * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30*0c3983b2SBen Gras * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31*0c3983b2SBen Gras * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32*0c3983b2SBen Gras * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33*0c3983b2SBen Gras * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34*0c3983b2SBen Gras * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35*0c3983b2SBen Gras * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36*0c3983b2SBen Gras * POSSIBILITY OF SUCH DAMAGE.
37*0c3983b2SBen Gras */
38*0c3983b2SBen Gras #include <sys/cdefs.h>
39*0c3983b2SBen Gras
40*0c3983b2SBen Gras #define __LIBC12_SOURCE__
41*0c3983b2SBen Gras #include <string.h>
42*0c3983b2SBen Gras #include <time.h>
43*0c3983b2SBen Gras #include <sys/time.h>
44*0c3983b2SBen Gras #include <compat/include/time.h>
45*0c3983b2SBen Gras #include <compat/sys/time.h>
46*0c3983b2SBen Gras #include <util.h>
47*0c3983b2SBen Gras #include <compat/util.h>
48*0c3983b2SBen Gras
49*0c3983b2SBen Gras __warn_references(parsedate,
50*0c3983b2SBen Gras "warning: reference to compatibility parsedate();"
51*0c3983b2SBen Gras " include <util.h> for correct reference")
52*0c3983b2SBen Gras
53*0c3983b2SBen Gras int32_t
parsedate(const char * str,const int32_t * t50,const int * tzoff)54*0c3983b2SBen Gras parsedate(const char *str, const int32_t *t50, const int *tzoff)
55*0c3983b2SBen Gras {
56*0c3983b2SBen Gras time_t t;
57*0c3983b2SBen Gras if (t50)
58*0c3983b2SBen Gras t = *t50;
59*0c3983b2SBen Gras return (int32_t)__parsedate50(str, t50 ? &t : NULL, tzoff);
60*0c3983b2SBen Gras }
61