/* GAUSS - A System for Least Squares and Robust Estimation Source Code Copyright (C) 1987 by William H. Jefferys, Michael J. Fitzpatrick and Barbara E. McArthur All Rights Reserved. */ /* External function definitions for routines described in string */ char *strcat(); /* concatenate strings */ char *strncat(); /* concatenate strings (max length on) */ int strcmp(); /* compare two strings */ int strncmp(); /* compare two strings (max length on) */ char *strcpy(); /* copy string */ char *strncpy(); /* copy string (max length n) */ int strlen(); /* get length of a string */