/************************************************************* * File: lib/strccat.c * Purpose: Part of C runtime library * Author: Phil Bunce (pjb@carmel.com) * Revision History: * 970304 Start of revision history */ #include "string.h" /** char *strccat(dst,c) concatinate char to dst string */ char *strccat(char *dst,char c) { int len; if (!dst) return(dst); len = strlen(dst); dst[len] = c; dst[len+1] = 0; return(dst); }