/*
* Copyright 1990 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
/* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */
/* All Rights Reserved */
/*
* Copyright (c) 1980 Regents of the University of California.
* All rights reserved. The Berkeley software License Agreement
* specifies the terms and conditions for redistribution.
*/
#pragma ident "%Z%%M% %I% %E% SMI"
/* ts.c: minor string processing subroutines */
int
{
if (*s1++ == '\0')
return(1);
else
s2++;
return(0);
}
int
{
int c;
if (c==0) return(1);
return(c==0);
}
int
{
return(1);
return(1);
return(0);
}
int
{
/* convert to integer */
int k;
return(k);
}
int
digit(int x)
{
return(x>= '0' && x<= '9');
}
int
max(int a, int b)
{
return( a>b ? a : b);
}
void
tcopy(char *s, char *t)
{
while (*s++ = *t++);
}