xstrcatch.c (500B)
1 /************************************************************************* 2 * This file is part of Crosroads 1.23, a load balancer and fail over 3 * utility for TCP. Copyright (c) Karel Kubat, distributed under GPL. 4 * Visit http://crossroads.e-tunity.com for information. 5 *************************************************************************/ 6 #include "crossroads.h" 7 8 char *xstrcatch (char *what, char ch) { 9 char buf[2]; 10 11 buf[0] = ch; 12 buf[1] = 0; 13 return (xstrcat (what, buf)); 14 }