8 lines
145 B
C
8 lines
145 B
C
#ifndef MAX_WORDS_H_
|
|
#define MAX_WORDS_H_
|
|
|
|
// now keep this small and malloc if we need more... save some stack
|
|
#define MAX_WORDS (1024)
|
|
|
|
#endif
|