14b88c807SRodney W. Grimes /*-
2*8a16b7a1SPedro F. Giffuni * SPDX-License-Identifier: BSD-3-Clause
3*8a16b7a1SPedro F. Giffuni *
44b88c807SRodney W. Grimes * Copyright (c) 1991, 1993
54b88c807SRodney W. Grimes * The Regents of the University of California. All rights reserved.
64b88c807SRodney W. Grimes *
74b88c807SRodney W. Grimes * This code is derived from software contributed to Berkeley by
84b88c807SRodney W. Grimes * Kenneth Almquist.
94b88c807SRodney W. Grimes *
104b88c807SRodney W. Grimes * Redistribution and use in source and binary forms, with or without
114b88c807SRodney W. Grimes * modification, are permitted provided that the following conditions
124b88c807SRodney W. Grimes * are met:
134b88c807SRodney W. Grimes * 1. Redistributions of source code must retain the above copyright
144b88c807SRodney W. Grimes * notice, this list of conditions and the following disclaimer.
154b88c807SRodney W. Grimes * 2. Redistributions in binary form must reproduce the above copyright
164b88c807SRodney W. Grimes * notice, this list of conditions and the following disclaimer in the
174b88c807SRodney W. Grimes * documentation and/or other materials provided with the distribution.
18fbbd9655SWarner Losh * 3. Neither the name of the University nor the names of its contributors
194b88c807SRodney W. Grimes * may be used to endorse or promote products derived from this software
204b88c807SRodney W. Grimes * without specific prior written permission.
214b88c807SRodney W. Grimes *
224b88c807SRodney W. Grimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
234b88c807SRodney W. Grimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
244b88c807SRodney W. Grimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
254b88c807SRodney W. Grimes * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
264b88c807SRodney W. Grimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
274b88c807SRodney W. Grimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
284b88c807SRodney W. Grimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
294b88c807SRodney W. Grimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
304b88c807SRodney W. Grimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
314b88c807SRodney W. Grimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
324b88c807SRodney W. Grimes * SUCH DAMAGE.
334b88c807SRodney W. Grimes */
344b88c807SRodney W. Grimes
354b88c807SRodney W. Grimes /*
364b88c807SRodney W. Grimes * String functions.
374b88c807SRodney W. Grimes *
384b88c807SRodney W. Grimes * equal(s1, s2) Return true if strings are equal.
394b88c807SRodney W. Grimes * number(s) Convert a string of digits to an integer.
404b88c807SRodney W. Grimes * is_number(s) Return true if s is a string of digits.
414b88c807SRodney W. Grimes */
424b88c807SRodney W. Grimes
43aa9caaf6SPeter Wemm #include <stdlib.h>
444b88c807SRodney W. Grimes #include "shell.h"
454b88c807SRodney W. Grimes #include "syntax.h"
464b88c807SRodney W. Grimes #include "error.h"
474b88c807SRodney W. Grimes #include "mystring.h"
484b88c807SRodney W. Grimes
494b88c807SRodney W. Grimes
504b88c807SRodney W. Grimes char nullstr[1]; /* zero length string */
514b88c807SRodney W. Grimes
524b88c807SRodney W. Grimes /*
534b88c807SRodney W. Grimes * equal - #defined in mystring.h
544b88c807SRodney W. Grimes */
554b88c807SRodney W. Grimes
564b88c807SRodney W. Grimes
574b88c807SRodney W. Grimes /*
584b88c807SRodney W. Grimes * Convert a string of digits to an integer, printing an error message on
594b88c807SRodney W. Grimes * failure.
604b88c807SRodney W. Grimes */
614b88c807SRodney W. Grimes
624b88c807SRodney W. Grimes int
number(const char * s)635134c3f7SWarner Losh number(const char *s)
644b88c807SRodney W. Grimes {
654b88c807SRodney W. Grimes if (! is_number(s))
66384aedabSJilles Tjoelker error("Illegal number: %s", s);
674b88c807SRodney W. Grimes return atoi(s);
684b88c807SRodney W. Grimes }
694b88c807SRodney W. Grimes
704b88c807SRodney W. Grimes
714b88c807SRodney W. Grimes
724b88c807SRodney W. Grimes /*
734b88c807SRodney W. Grimes * Check for a valid number. This should be elsewhere.
744b88c807SRodney W. Grimes */
754b88c807SRodney W. Grimes
764b88c807SRodney W. Grimes int
is_number(const char * p)775134c3f7SWarner Losh is_number(const char *p)
784b88c807SRodney W. Grimes {
79d53f7f64SJilles Tjoelker const char *q;
80d53f7f64SJilles Tjoelker
81d53f7f64SJilles Tjoelker if (*p == '\0')
824b88c807SRodney W. Grimes return 0;
83d53f7f64SJilles Tjoelker while (*p == '0')
84d53f7f64SJilles Tjoelker p++;
85d53f7f64SJilles Tjoelker for (q = p; *q != '\0'; q++)
86d53f7f64SJilles Tjoelker if (! is_digit(*q))
87d53f7f64SJilles Tjoelker return 0;
88d53f7f64SJilles Tjoelker if (q - p > 10 ||
89d53f7f64SJilles Tjoelker (q - p == 10 && memcmp(p, "2147483647", 10) > 0))
90d53f7f64SJilles Tjoelker return 0;
914b88c807SRodney W. Grimes return 1;
924b88c807SRodney W. Grimes }
93