Deleted Added
full compact
mystring.h (50471) mystring.h (90111)
1/*-
2 * Copyright (c) 1991, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Kenneth Almquist.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 20 unchanged lines hidden (view full) ---

29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * @(#)mystring.h 8.2 (Berkeley) 5/4/95
1/*-
2 * Copyright (c) 1991, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Kenneth Almquist.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 20 unchanged lines hidden (view full) ---

29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * @(#)mystring.h 8.2 (Berkeley) 5/4/95
37 * $FreeBSD: head/bin/sh/mystring.h 50471 1999-08-27 23:15:48Z peter $
37 * $FreeBSD: head/bin/sh/mystring.h 90111 2002-02-02 06:50:57Z imp $
38 */
39
40#include <string.h>
41
38 */
39
40#include <string.h>
41
42void scopyn __P((const char *, char *, int));
43int prefix __P((const char *, const char *));
44int number __P((const char *));
45int is_number __P((const char *));
42void scopyn(const char *, char *, int);
43int prefix(const char *, const char *);
44int number(const char *);
45int is_number(const char *);
46
47#define equal(s1, s2) (strcmp(s1, s2) == 0)
48#define scopy(s1, s2) ((void)strcpy(s2, s1))
46
47#define equal(s1, s2) (strcmp(s1, s2) == 0)
48#define scopy(s1, s2) ((void)strcpy(s2, s1))