home *** CD-ROM | disk | FTP | other *** search
/ Giga Games 1 / Giga Games.iso / net / go / prog / sgf2mi13.taz / sgf2mi13 / tools.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-02-27  |  1.3 KB  |  53 lines

  1. /* #[info:            */
  2. /************************************************************************
  3.  *                                    *
  4.  *          #######  ####   ####  #       ####            *
  5.  *             #    #    # #    # #      #                *
  6.  *             #    #    # #    # #      #                *
  7.  *             #    #    # #    # #       ###             *
  8.  *             #    #    # #    # #          #            *
  9.  *             #    #    # #    # #          #            *
  10.  *             #     ####   ####  ###### ####             *
  11.  *                                    *
  12.  *                Jan van der Steen                *
  13.  *                                    *
  14.  *          Centre for Mathematics and Computer Science        *
  15.  *              Amsterdam, the Netherlands            *
  16.  *                                    *
  17.  *----------------------------------------------------------------------*
  18.  * File    : tools.h                         *
  19.  * Purpose : Various tools                        *
  20.  * Version : 1.4                         *
  21.  * Modified: 2/14/93 19:24:38                        *
  22.  * Author  : Jan van der Steen (jansteen@cwi.nl)             *
  23.  ************************************************************************/
  24. /* #]info:            */ 
  25.  
  26. #ifndef __TOOLSH
  27. #define __TOOLSH
  28.  
  29. /* #[include:        */
  30.  
  31. #include "gogame.h"
  32.  
  33. /* #]include:        */ 
  34. /* #[prototype:        */
  35.  
  36. #ifdef __STDC__
  37. #    define    PROTO(s) s
  38. #else
  39. #    define    PROTO(s) ()
  40. #endif
  41.  
  42. char *        string_alloc    PROTO((char *s));
  43. char *        string_store    PROTO((char *s));
  44. void        getoptions    PROTO((int argc, char **argv));
  45. void        kib_list    PROTO((int sortmode, char *label));
  46. void        kib_add        PROTO((TEXT *text));
  47.  
  48. #undef PROTO
  49.  
  50. /* #]prototype:        */ 
  51.  
  52. #endif
  53.