root/ext/template.extension.h

/* [<][>][^][v][top][bottom][index][help] */
   1 /*
   2  * @@extname@@.h
   3  */
   4 
   5 /* Prologue */
   6 #ifndef GAUCHE_@@EXTNAME@@_H
   7 #define GAUCHE_@@EXTNAME@@_H
   8 
   9 #include <gauche.h>
  10 #include <gauche/extend.h>
  11 
  12 SCM_DECL_BEGIN
  13 
  14 /*
  15  * The following entry is a dummy one.
  16  * Replace it for your declarations.
  17  */
  18 
  19 extern ScmObj test_@@extname@@(void);
  20 
  21 /* Epilogue */
  22 SCM_DECL_END
  23 
  24 #endif  /* GAUCHE_@@EXTNAME@@_H */

/* [<][>][^][v][top][bottom][index][help] */