xref: /csrg-svn/bin/sh/mystring.h (revision 69272)
147134Sbostic /*-
260698Sbostic  * Copyright (c) 1991, 1993
360698Sbostic  *	The Regents of the University of California.  All rights reserved.
447134Sbostic  *
547134Sbostic  * This code is derived from software contributed to Berkeley by
647134Sbostic  * Kenneth Almquist.
747134Sbostic  *
847134Sbostic  * %sccs.include.redist.c%
947134Sbostic  *
10*69272Schristos  *	@(#)mystring.h	8.2 (Berkeley) 05/04/95
1147134Sbostic  */
1247134Sbostic 
1354321Smarc #include <string.h>
1447134Sbostic 
15*69272Schristos void scopyn __P((const char *, char *, int));
16*69272Schristos int prefix __P((const char *, const char *));
17*69272Schristos int number __P((const char *));
18*69272Schristos int is_number __P((const char *));
1947134Sbostic 
2047134Sbostic #define equal(s1, s2)	(strcmp(s1, s2) == 0)
2147134Sbostic #define scopy(s1, s2)	((void)strcpy(s2, s1))
22