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