From a5119027eb1276557e834f69061ac83122cf8348 Mon Sep 17 00:00:00 2001 From: Thomas Jensen Date: Tue, 31 Aug 1999 15:38:42 +0000 Subject: [PATCH] Added concat_strings() function prototype from Joe Zbiciak's patches --- src/tools.h | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/tools.h b/src/tools.h index 1ca2f0e..2c818b9 100644 --- a/src/tools.h +++ b/src/tools.h @@ -4,7 +4,7 @@ * Date created: June 20, 1999 (Sunday, 16:57h) * Author: Copyright (C) 1999 Thomas Jensen * tsjensen@stud.informatik.uni-erlangen.de - * Version: $Id: tools.h,v 1.1 1999/06/23 11:19:59 tsjensen Exp tsjensen $ + * Version: $Id: tools.h,v 1.2 1999/07/20 18:56:15 tsjensen Exp tsjensen $ * Language: ANSI C * Purpose: Tool functions for error reporting and some string * handling and other needful things @@ -25,6 +25,11 @@ * Revision History: * * $Log: tools.h,v $ + * Revision 1.2 1999/07/20 18:56:15 tsjensen + * Added GNU GPL disclaimer + * Removed include boxes.h + * Added prototypes for strisyes() and strisno() + * * Revision 1.1 1999/06/23 11:19:59 tsjensen * Initial revision * @@ -57,6 +62,8 @@ char* my_strnrstr (const char *s1, const char *s2, const size_t s2_len, int strisyes (const char *s); int strisno (const char *s); +void concat_strings (char *dst, int max_len, int count, ...); + #endif /*EOF*/ /* vim: set cindent sw=4: */