home *** CD-ROM | disk | FTP | other *** search
- /* #[info: */
- /************************************************************************
- * *
- * ####### #### #### # #### *
- * # # # # # # # *
- * # # # # # # # *
- * # # # # # # ### *
- * # # # # # # # *
- * # # # # # # # *
- * # #### #### ###### #### *
- * *
- * Jan van der Steen *
- * *
- * Centre for Mathematics and Computer Science *
- * Amsterdam, the Netherlands *
- * *
- *----------------------------------------------------------------------*
- * File : tools.h *
- * Purpose : Various tools *
- * Version : 1.4 *
- * Modified: 2/14/93 19:24:38 *
- * Author : Jan van der Steen (jansteen@cwi.nl) *
- ************************************************************************/
- /* #]info: */
-
- #ifndef __TOOLSH
- #define __TOOLSH
-
- /* #[include: */
-
- #include "gogame.h"
-
- /* #]include: */
- /* #[prototype: */
-
- #ifdef __STDC__
- # define PROTO(s) s
- #else
- # define PROTO(s) ()
- #endif
-
- char * string_alloc PROTO((char *s));
- char * string_store PROTO((char *s));
- void getoptions PROTO((int argc, char **argv));
- void kib_list PROTO((int sortmode, char *label));
- void kib_add PROTO((TEXT *text));
-
- #undef PROTO
-
- /* #]prototype: */
-
- #endif
-