grammar.c 187 B

123456789
  1. /* enumerator for possible parser operations */
  2. enum g_op { or, and, many };
  3. /* dict type that holds words */
  4. typedef struct {
  5. int count;
  6. char* words;
  7. enum g_op op;
  8. } g_dict;