1219019Sgabor/* $FreeBSD$ */
2263986Stijl/* $NetBSD: citrus_bcs_strtol.c,v 1.4 2013/04/26 21:20:47 joerg Exp $ */
3219019Sgabor
4219019Sgabor/*-
5219019Sgabor * Copyright (c) 2005 The DragonFly Project.  All rights reserved.
6219019Sgabor * Copyright (c) 2003, 2008 Citrus Project,
7219019Sgabor * All rights reserved.
8219019Sgabor *
9219019Sgabor * Redistribution and use in source and binary forms, with or without
10219019Sgabor * modification, are permitted provided that the following conditions
11219019Sgabor * are met:
12219019Sgabor * 1. Redistributions of source code must retain the above copyright
13219019Sgabor *    notice, this list of conditions and the following disclaimer.
14219019Sgabor * 2. Redistributions in binary form must reproduce the above copyright
15219019Sgabor *    notice, this list of conditions and the following disclaimer in the
16219019Sgabor *    documentation and/or other materials provided with the distribution.
17219019Sgabor *
18219019Sgabor * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
19219019Sgabor * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20219019Sgabor * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21219019Sgabor * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
22219019Sgabor * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23219019Sgabor * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24219019Sgabor * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25219019Sgabor * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26219019Sgabor * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27219019Sgabor * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28219019Sgabor * SUCH DAMAGE.
29219019Sgabor */
30219019Sgabor
31219019Sgabor#include <sys/cdefs.h>
32219019Sgabor
33219019Sgabor#include <assert.h>
34219019Sgabor#include <errno.h>
35219019Sgabor#include <limits.h>
36219019Sgabor#include <stdint.h>
37219019Sgabor#include <stdlib.h>
38219019Sgabor
39219019Sgabor#include "citrus_namespace.h"
40219019Sgabor#include "citrus_bcs.h"
41219019Sgabor
42219019Sgabor#define	_FUNCNAME	_bcs_strtol
43219019Sgabor#define	__INT		long int
44219019Sgabor
45219019Sgabor#undef isspace
46219019Sgabor#define isspace(c)	_bcs_isspace(c)
47219019Sgabor
48219019Sgabor#undef isdigit
49219019Sgabor#define isdigit(c)	_bcs_isdigit(c)
50219019Sgabor
51219019Sgabor#undef isalpha
52219019Sgabor#define isalpha(c)	_bcs_isalpha(c)
53219019Sgabor
54219019Sgabor#undef isupper
55219019Sgabor#define isupper(c)	_bcs_isupper(c)
56219019Sgabor
57219019Sgabor#include "_strtol.h"
58