1*eda14cbcSMatt Macy /*
2*eda14cbcSMatt Macy * Copyright (c) 2010 Pawel Jakub Dawidek <pjd@FreeBSD.org>
3*eda14cbcSMatt Macy * All rights reserved.
4*eda14cbcSMatt Macy *
5*eda14cbcSMatt Macy * Redistribution and use in source and binary forms, with or without
6*eda14cbcSMatt Macy * modification, are permitted provided that the following conditions
7*eda14cbcSMatt Macy * are met:
8*eda14cbcSMatt Macy * 1. Redistributions of source code must retain the above copyright
9*eda14cbcSMatt Macy * notice, this list of conditions and the following disclaimer.
10*eda14cbcSMatt Macy * 2. Redistributions in binary form must reproduce the above copyright
11*eda14cbcSMatt Macy * notice, this list of conditions and the following disclaimer in the
12*eda14cbcSMatt Macy * documentation and/or other materials provided with the distribution.
13*eda14cbcSMatt Macy *
14*eda14cbcSMatt Macy * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
15*eda14cbcSMatt Macy * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16*eda14cbcSMatt Macy * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17*eda14cbcSMatt Macy * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE
18*eda14cbcSMatt Macy * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19*eda14cbcSMatt Macy * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20*eda14cbcSMatt Macy * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21*eda14cbcSMatt Macy * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22*eda14cbcSMatt Macy * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23*eda14cbcSMatt Macy * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24*eda14cbcSMatt Macy * SUCH DAMAGE.
25*eda14cbcSMatt Macy */
26*eda14cbcSMatt Macy
27*eda14cbcSMatt Macy #include <sys/types.h>
28*eda14cbcSMatt Macy #include <sys/param.h>
29*eda14cbcSMatt Macy #include <sys/jail.h>
30*eda14cbcSMatt Macy #include <sys/kernel.h>
31*eda14cbcSMatt Macy #include <sys/libkern.h>
32*eda14cbcSMatt Macy #include <sys/limits.h>
33*eda14cbcSMatt Macy #include <sys/misc.h>
34*eda14cbcSMatt Macy #include <sys/sunddi.h>
35*eda14cbcSMatt Macy #include <sys/sysctl.h>
36*eda14cbcSMatt Macy
37*eda14cbcSMatt Macy int
ddi_strtol(const char * str,char ** nptr,int base,long * result)38*eda14cbcSMatt Macy ddi_strtol(const char *str, char **nptr, int base, long *result)
39*eda14cbcSMatt Macy {
40*eda14cbcSMatt Macy
41*eda14cbcSMatt Macy *result = strtol(str, nptr, base);
42*eda14cbcSMatt Macy return (0);
43*eda14cbcSMatt Macy }
44*eda14cbcSMatt Macy
45*eda14cbcSMatt Macy int
ddi_strtoull(const char * str,char ** nptr,int base,unsigned long long * result)46*eda14cbcSMatt Macy ddi_strtoull(const char *str, char **nptr, int base, unsigned long long *result)
47*eda14cbcSMatt Macy {
48*eda14cbcSMatt Macy
49*eda14cbcSMatt Macy *result = (unsigned long long)strtouq(str, nptr, base);
50*eda14cbcSMatt Macy return (0);
51*eda14cbcSMatt Macy }
52*eda14cbcSMatt Macy
53*eda14cbcSMatt Macy int
ddi_strtoll(const char * str,char ** nptr,int base,long long * result)54*eda14cbcSMatt Macy ddi_strtoll(const char *str, char **nptr, int base, long long *result)
55*eda14cbcSMatt Macy {
56*eda14cbcSMatt Macy
57*eda14cbcSMatt Macy *result = (long long)strtoq(str, nptr, base);
58*eda14cbcSMatt Macy return (0);
59*eda14cbcSMatt Macy }
60