/*
 * a replacement for string.h
 */
/****************************************************************
 * Copyright notice.						*
 * This software is copyrighted (c) 1991 by Matt Bishop and the *
 * Trustees of Dartmouth College.  All rights reserved.		*
 *								*
 * Author:	Matt Bishop					*
 * Address:	Department of Mathematics and Computer Science	*
 *		Dartmouth College				*
 *		Hanover, NH  03755-1831				*
 *		USA						*
 * telephone:	+1 603 646 3267					*
 * fax:		+1 603 646 1312					*
 * internet:	Matt.Bishop@dartmouth.edu			*
 * usenet:	...!decvax!dartvax!Matt.Bishop			*
 ****************************************************************/
/* #ifndef lint
 * static char *version = "Version GAMMA 6/31/91 Matt.Bishop@dartmouth.edu";
 * #endif
 */

#include <stdio.h>
#include <ctype.h>

/*
 * library functions
 */
char *index();			/* locate a character in a string */
char *strcat();			/* string appending */
char *strcpy();			/* copy a string */
int strcmp();			/* compare a string */
int strlen();			/* compute length of a string */
int strncmp();			/* compare first part of a string */
