Added concat_strings() function prototype from Joe Zbiciak's patches

This commit is contained in:
Thomas Jensen 1999-08-31 15:38:42 +00:00
parent fc2a00f0dc
commit a5119027eb

View File

@ -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: */