BACK to addon.html#dispatch

 /* -*- buffer-read-only: t -*- vi: set ro:
  * 
  * DO NOT EDIT THIS FILE   (greek.h)
  * 
  * It has been AutoGen-ed  April 15, 2012 at 11:22:30 AM by AutoGen 5.16pre23
  * From the definitions    greek.def
  * and the template file   dispatch.tpl
  *
  *  Recognizer generation options:
  *
  *  external scope
  *  gperf generated
  *  partial name matches are matched, if the match is unique
  *  A dispatch routine is generated that will call handler routines
  */
 #ifndef RECOGNIZER_GREEK_H_GUARD
 #define RECOGNIZER_GREEK_H_GUARD 1
 #include <ctype.h>
 #include <string.h>
 
 typedef enum { GREEK_INVALID = 0,
     GREEK_ALPHA, GREEK_BETA,  GREEK_GAMMA, GREEK_DELTA, GREEK_OMEGA,
     GREEK_HELP
 } greek_enum_t;
 
 #define GREEK_COUNT 6
 
 extern greek_enum_t
 greek_enum(char const * name, char const ** next);
 
 extern char const *
 greek_name(greek_enum_t cmd);
 extern int
 dispatch_greek(char const * cmd, void * cookie);
 
 
 #endif /* RECOGNIZER_GREEK_H_GUARD */
 /* end of greek.h */