diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2004-03-06 22:11:45 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2004-03-06 22:11:45 +0000 |
commit | 1aa213a1aeddf67b4ad6c5ac4cb251c861ffeafb (patch) | |
tree | e4891420283c085d688683a41cc217dc896917b8 /libbb | |
parent | 0ba8ef4bbcca5700238b52efbafbaf72d8e3fd96 (diff) | |
download | busybox-w32-1aa213a1aeddf67b4ad6c5ac4cb251c861ffeafb.tar.gz busybox-w32-1aa213a1aeddf67b4ad6c5ac4cb251c861ffeafb.tar.bz2 busybox-w32-1aa213a1aeddf67b4ad6c5ac4cb251c861ffeafb.zip |
Fix/eliminate use of atol
git-svn-id: svn://busybox.net/trunk/busybox@8598 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/Makefile.in | 13 | ||||
-rw-r--r-- | libbb/safe_strtol.c | 92 |
2 files changed, 102 insertions, 3 deletions
diff --git a/libbb/Makefile.in b/libbb/Makefile.in index a656a5a53..632208184 100644 --- a/libbb/Makefile.in +++ b/libbb/Makefile.in | |||
@@ -1,6 +1,6 @@ | |||
1 | # Makefile for busybox | 1 | # Makefile for busybox |
2 | # | 2 | # |
3 | # Copyright (C) 1999-2003 by Erik Andersen <andersen@codepoet.org> | 3 | # Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org> |
4 | # | 4 | # |
5 | # This program is free software; you can redistribute it and/or modify | 5 | # This program is free software; you can redistribute it and/or modify |
6 | # it under the terms of the GNU General Public License as published by | 6 | # it under the terms of the GNU General Public License as published by |
@@ -72,17 +72,21 @@ LIBBB_MSRC3:=$(LIBBB_DIR)xgetularg.c | |||
72 | LIBBB_MOBJ3:=xgetularg_bnd_sfx.o xgetlarg_bnd_sfx.o getlarg10_sfx.o \ | 72 | LIBBB_MOBJ3:=xgetularg_bnd_sfx.o xgetlarg_bnd_sfx.o getlarg10_sfx.o \ |
73 | xgetularg_bnd.o xgetularg10_bnd.o xgetularg10.o | 73 | xgetularg_bnd.o xgetularg10_bnd.o xgetularg10.o |
74 | 74 | ||
75 | LIBBB_MSRC4:=$(LIBBB_DIR)/safe_strtol.c | ||
76 | LIBBB_MOBJ4:=safe_strtoi.o safe_strtod.o safe_strtol.o safe_strtoul.o | ||
77 | |||
75 | LIBBB_MOBJS0=$(patsubst %,$(LIBBB_DIR)%, $(LIBBB_MOBJ0)) | 78 | LIBBB_MOBJS0=$(patsubst %,$(LIBBB_DIR)%, $(LIBBB_MOBJ0)) |
76 | LIBBB_MOBJS1=$(patsubst %,$(LIBBB_DIR)%, $(LIBBB_MOBJ1)) | 79 | LIBBB_MOBJS1=$(patsubst %,$(LIBBB_DIR)%, $(LIBBB_MOBJ1)) |
77 | LIBBB_MOBJS2=$(patsubst %,$(LIBBB_DIR)%, $(LIBBB_MOBJ2)) | 80 | LIBBB_MOBJS2=$(patsubst %,$(LIBBB_DIR)%, $(LIBBB_MOBJ2)) |
78 | LIBBB_MOBJS3=$(patsubst %,$(LIBBB_DIR)%, $(LIBBB_MOBJ3)) | 81 | LIBBB_MOBJS3=$(patsubst %,$(LIBBB_DIR)%, $(LIBBB_MOBJ3)) |
82 | LIBBB_MOBJS4=$(patsubst %,$(LIBBB_DIR)%, $(LIBBB_MOBJ4)) | ||
79 | 83 | ||
80 | libraries-y+=$(LIBBB_DIR)$(LIBBB_AR) | 84 | libraries-y+=$(LIBBB_DIR)$(LIBBB_AR) |
81 | 85 | ||
82 | $(LIBBB_DIR)$(LIBBB_AR): $(LIBBB_OBJS) $(LIBBB_MOBJS0) $(LIBBB_MOBJS1) \ | 86 | $(LIBBB_DIR)$(LIBBB_AR): $(LIBBB_OBJS) $(LIBBB_MOBJS0) $(LIBBB_MOBJS1) \ |
83 | $(LIBBB_MOBJS2) $(LIBBB_MOBJS3) | 87 | $(LIBBB_MOBJS2) $(LIBBB_MOBJS3) $(LIBBB_MOBJS4) |
84 | $(AR) -ro $@ $(LIBBB_OBJS) $(LIBBB_MOBJS0) $(LIBBB_MOBJS1) \ | 88 | $(AR) -ro $@ $(LIBBB_OBJS) $(LIBBB_MOBJS0) $(LIBBB_MOBJS1) \ |
85 | $(LIBBB_MOBJS2) $(LIBBB_MOBJS3) | 89 | $(LIBBB_MOBJS2) $(LIBBB_MOBJS3) $(LIBBB_MOBJS4) |
86 | 90 | ||
87 | $(LIBBB_MOBJS0): $(LIBBB_MSRC0) | 91 | $(LIBBB_MOBJS0): $(LIBBB_MSRC0) |
88 | $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -DL_$(notdir $*) -c $< -o $@ | 92 | $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -DL_$(notdir $*) -c $< -o $@ |
@@ -96,3 +100,6 @@ $(LIBBB_MOBJS2): $(LIBBB_MSRC2) | |||
96 | $(LIBBB_MOBJS3): $(LIBBB_MSRC3) | 100 | $(LIBBB_MOBJS3): $(LIBBB_MSRC3) |
97 | $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -DL_$(notdir $*) -c $< -o $@ | 101 | $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -DL_$(notdir $*) -c $< -o $@ |
98 | 102 | ||
103 | $(LIBBB_MOBJS4): $(LIBBB_MSRC4) | ||
104 | $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -DL_$(notdir $*) -c $< -o $@ | ||
105 | |||
diff --git a/libbb/safe_strtol.c b/libbb/safe_strtol.c new file mode 100644 index 000000000..fcbdba878 --- /dev/null +++ b/libbb/safe_strtol.c | |||
@@ -0,0 +1,92 @@ | |||
1 | /* vi: set sw=4 ts=4: */ | ||
2 | /* | ||
3 | * Utility routines. | ||
4 | * | ||
5 | * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org> | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License as published by | ||
9 | * the Free Software Foundation; either version 2 of the License, or | ||
10 | * (at your option) any later version. | ||
11 | * | ||
12 | * This program is distributed in the hope that it will be useful, | ||
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
15 | * General Public License for more details. | ||
16 | * | ||
17 | * You should have received a copy of the GNU General Public License | ||
18 | * along with this program; if not, write to the Free Software | ||
19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
20 | */ | ||
21 | |||
22 | #include <stdlib.h> | ||
23 | #include <errno.h> | ||
24 | #include <assert.h> | ||
25 | #include "libbb.h" | ||
26 | |||
27 | #ifdef L_safe_strtoi | ||
28 | extern | ||
29 | int safe_strtoi(char *arg, int* value) | ||
30 | { | ||
31 | int error; | ||
32 | long lvalue = *value; | ||
33 | error = safe_strtol(arg, &lvalue); | ||
34 | *value = (int) lvalue; | ||
35 | return error; | ||
36 | } | ||
37 | #endif | ||
38 | |||
39 | #ifdef L_safe_strtod | ||
40 | extern | ||
41 | int safe_strtod(char *arg, double* value) | ||
42 | { | ||
43 | char *endptr; | ||
44 | int errno_save = errno; | ||
45 | |||
46 | assert(arg!=NULL); | ||
47 | errno = 0; | ||
48 | *value = strtod(arg, &endptr); | ||
49 | if (errno != 0 || *endptr!='\0' || endptr==arg) { | ||
50 | return 1; | ||
51 | } | ||
52 | errno = errno_save; | ||
53 | return 0; | ||
54 | } | ||
55 | #endif | ||
56 | |||
57 | #ifdef L_safe_strtol | ||
58 | extern | ||
59 | int safe_strtol(char *arg, long* value) | ||
60 | { | ||
61 | char *endptr; | ||
62 | int errno_save = errno; | ||
63 | |||
64 | assert(arg!=NULL); | ||
65 | errno = 0; | ||
66 | *value = strtol(arg, &endptr, 0); | ||
67 | if (errno != 0 || *endptr!='\0' || endptr==arg) { | ||
68 | return 1; | ||
69 | } | ||
70 | errno = errno_save; | ||
71 | return 0; | ||
72 | } | ||
73 | #endif | ||
74 | |||
75 | #ifdef L_safe_strtoul | ||
76 | extern | ||
77 | int safe_strtoul(char *arg, unsigned long* value) | ||
78 | { | ||
79 | char *endptr; | ||
80 | int errno_save = errno; | ||
81 | |||
82 | assert(arg!=NULL); | ||
83 | errno = 0; | ||
84 | *value = strtoul(arg, &endptr, 0); | ||
85 | if (errno != 0 || *endptr!='\0' || endptr==arg) { | ||
86 | return 1; | ||
87 | } | ||
88 | errno = errno_save; | ||
89 | return 0; | ||
90 | } | ||
91 | #endif | ||
92 | |||