/* --------------------------- strcat.c ---------------------------------- */ /* created: 5/15/84 */ /* modified: 8/22/84 */ /* ----------------------------------------------------------------------- */ #include "portab.h" #include "concur.h" /* ----------------------------- strcat -------------------------------- */ /* concatenate two character string */ /* --------------------------------------------------------------------- */ VOID strcat( s,t ) BYTE s[],t[]; { REG BYTE i,j; for( i=0,j=0; s[i] != NULL; i++ ); while ( (s[i++] = t[j++]) !=NULL ); }