|
From: Bob T. <bt...@us...> - 2003-11-08 21:08:59
|
Update of /cvsroot/benson/benson3/include/benson In directory sc8-pr-cvs1:/tmp/cvs-serv15129 Added Files: utils.h Log Message: Added the utils.h file --- NEW FILE: utils.h --- /* * * include/benson/utils.h * * Copyright (C) 2002, 2003 Bob Tribit <bt...@ne...> */ #ifndef __utils_h #define __utils_h #include <stdlib.h> #include <string.h> extern void safe_insert(char *d, char *s, int maxsize); extern void *ibn_malloc(size_t length); extern void ibn_free(void *); #endif /* __utils_h */ |