mirror of
https://github.com/privacore/open-source-search-engine.git
synced 2025-02-02 03:38:43 -05:00
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
|