ixAddStopWordList -- Adds a file based list of stopwords to the stopword list.
void ixAddStopWordList(OnixStopWordListT StopWordList, char *FileName, StatusCodeT *Status);
StopWordList -- A stop word list which was created by a call to ixCreateStopWordList().
FileName -- A pointer to the 0x00 terminated filename of a file containing the list of stopwords. (One per line.)
Status -- A pointer to a value of type StatusCodeT. If an error occurs, it will be reported in *Status.
Nothing.
It may be useful to load stopwords from a file. ixAddStopWordList loads the words from a file into the stopword list. Words need to be placed in the file one per line. Lines which start with a '#' character are ignored allowing you to place comments and other information in the stopword file. Words specified in a file can not have the following characters: Newline (\n), Carriage Return (\r), and Tab (\t). Other than these restrictions there are no limits to the words or characters which may be stored in the stopword list file.
ixCreateStopWordList, ixDeleteStopWordList, ixAddStopWord, ixAddStopWordList, ixIsStopWord, ixNumStopWords