2 * Copyright (c) 1991, 1993
3 * The Regents of the University of California. All rights reserved.
4 * Copyright (c) 1997-2005
5 * Herbert Xu <herbert@gondor.apana.org.au>. All rights reserved.
7 * This code is derived from software contributed to Berkeley by
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. Neither the name of the University nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 * equal(s1, s2) Return true if strings are equal.
39 * scopy(from, to) Copy a string.
40 * scopyn(from, to, n) Like scopy, but checks for overflow.
41 * number(s) Convert a string of digits to an integer.
42 * is_number(s) Return true if s is a string of digits.
60 char nullstr
[1]; /* zero length string */
61 const char spcstr
[] = " ";
62 const char snlfmt
[] = "%s\n";
63 const char dolatstr
[] = { CTLQUOTEMARK
, CTLVAR
, VSNORMAL
| VSBIT
, '@', '=',
65 const char cqchars
[] = {
69 CTLESC
, CTLQUOTEMARK
, 0
71 const char illnum
[] = "Illegal number: %s";
72 const char homestr
[] = "HOME";
75 * equal - #defined in mystring.h
79 * scopy - #defined in mystring.h
85 * scopyn - copy a string from "from" to "to", truncating the string
86 * if necessary. "To" is always nul terminated, even if
87 * truncation is performed. "Size" is the size of "to".
91 scopyn(const char *from
, char *to
, int size
)
95 if ((*to
++ = *from
++) == '\0')
104 * prefix -- see if pfx is a prefix of string.
108 prefix(const char *string
, const char *pfx
)
111 if (*pfx
++ != *string
++)
114 return (char *) string
;
117 void badnum(const char *s
)
123 * Convert a string into an integer of type intmax_t. Alow trailing spaces.
125 intmax_t atomax(const char *s
, int base
)
131 r
= strtoimax(s
, &p
, base
);
137 * Disallow completely blank strings in non-arithmetic (base != 0)
143 while (isspace((unsigned char)*p
))
152 intmax_t atomax10(const char *s
)
154 return atomax(s
, 10);
158 * Convert a string of digits to an integer, printing an error message on
163 number(const char *s
)
165 intmax_t n
= atomax10(s
);
167 if (n
< 0 || n
> INT_MAX
)
176 * Check for a valid number. This should be elsewhere.
180 is_number(const char *p
)
185 } while (*++p
!= '\0');
191 * Produce a possibly single quoted string suitable as input to the shell.
192 * The return string is allocated on the stack.
196 single_quote(const char *s
) {
205 len
= strchrnul(s
, '\'') - s
;
207 q
= p
= makestrspace(len
+ 3, p
);
210 q
= mempcpy(q
, s
, len
);
216 len
= strspn(s
, "'");
220 q
= p
= makestrspace(len
+ 3, p
);
223 q
= mempcpy(q
, s
, len
);
236 * Like strdup but works with the ash stack.
240 sstrdup(const char *p
)
242 size_t len
= strlen(p
) + 1;
243 return memcpy(stalloc(len
), p
, len
);
247 * Wrapper around strcmp for qsort/bsearch/...
250 pstrcmp(const void *a
, const void *b
)
252 return strcmp(*(const char *const *) a
, *(const char *const *) b
);
256 * Find a string is in a sorted array.
259 findstring(const char *s
, const char *const *array
, size_t nmemb
)
261 return bsearch(&s
, array
, nmemb
, sizeof(const char *), pstrcmp
);