home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / icon / dos / src / icont / keyword.c < prev    next >
C/C++ Source or Header  |  1992-02-10  |  1KB  |  62 lines

  1. #include "../h/keyword.h"
  2. #include "tsym.h"
  3.  
  4. /*
  5.  * Keyword table.
  6.  */
  7.  
  8. struct keyent keytab[] = {
  9.    "allocated",    K_ALLOCATED,
  10.    "ascii",    K_ASCII,
  11.    "clock",    K_CLOCK,
  12.    "collections",    K_COLLECTIONS,
  13.    "cset",    K_CSET,
  14.    "current",    K_CURRENT,
  15.    "date",    K_DATE,
  16.    "dateline",    K_DATELINE,
  17.    "digits",    K_DIGITS,
  18.    "e",    K_E,
  19.    "error",    K_ERROR,
  20.    "errornumber",    K_ERRORNUMBER,
  21.    "errortext",    K_ERRORTEXT,
  22.    "errorvalue",    K_ERRORVALUE,
  23.    "errout",    K_ERROUT,
  24.    "eventcode",    K_EVENTCODE,
  25.    "eventvalue",    K_EVENTVALUE,
  26.    "fail",    K_FAIL,
  27.    "features",    K_FEATURES,
  28.    "file",    K_FILE,
  29.    "host",    K_HOST,
  30.    "input",    K_INPUT,
  31.    "lcase",    K_LCASE,
  32.    "ldrag",    K_LDRAG,
  33.    "letters",    K_LETTERS,
  34.    "level",    K_LEVEL,
  35.    "line",    K_LINE,
  36.    "lpress",    K_LPRESS,
  37.    "lrelease",    K_LRELEASE,
  38.    "main",    K_MAIN,
  39.    "mdrag",    K_MDRAG,
  40.    "mpress",    K_MPRESS,
  41.    "mrelease",    K_MRELEASE,
  42.    "null",    K_NULL,
  43.    "output",    K_OUTPUT,
  44.    "phi",    K_PHI,
  45.    "pi",    K_PI,
  46.    "pos",    K_POS,
  47.    "random",    K_RANDOM,
  48.    "rdrag",    K_RDRAG,
  49.    "regions",    K_REGIONS,
  50.    "resize",    K_RESIZE,
  51.    "rpress",    K_RPRESS,
  52.    "rrelease",    K_RRELEASE,
  53.    "source",    K_SOURCE,
  54.    "storage",    K_STORAGE,
  55.    "subject",    K_SUBJECT,
  56.    "time",    K_TIME,
  57.    "trace",    K_TRACE,
  58.    "ucase",    K_UCASE,
  59.    "version",    K_VERSION,
  60.    "",        -1
  61.    };
  62.