#ifndef __GRAMMAR_H__
#define __GRAMMAR_H__
/* These define what kind of article is appropriate in a given context.
Definite:
"the floor", "the sky"
Indefinite:
"an egg", "a bobsled"
Proper:
"King James", "Tommy"
*/
#define ART_DEFINITE 1
#define ART_INDEFINITE 2
#define ART_PROPER 3
#endif /* __GRAMMAR_H__ */