/*******************************************************************
 File:     string.h
 Purpose:  String handling
 Author:   Justin Fletcher
 Date:     09 Apr 1997
 ******************************************************************/

/*********************************************** <c> Gerph *********
 Function:     strcpy
 Description:  Copy a string
 Parameters:   from-> string to copy
               to-> block to copy to
 Returns:      pointer to to
 ******************************************************************/
extern char *strcpy(char *to,char *from);

/*********************************************** <c> Gerph *********
 Function:     strlen
 Description:  Find the length of a string
 Parameters:   str-> string
 Returns:      length of string
 ******************************************************************/
int strlen(char *str);
