ixAddStopWord -- Adds a stopword to the stopword list.
void ixAddStopWord(OnixStopWordListT StopWordList, UCharT *Word, size_t WordLength, StatusCodeT *Status);
StopWordList -- A stop word list which was created by a call to ixCreateStopWordList().
Word -- A pointer to the word's data.
WordLength -- The length of the word in bytes.
Status -- A pointer to a value of type StatusCodeT. If an error occurs, it will be reported in *Status.
Nothing.
ixAddStopWord adds a stopword to the stopword list. The stopword list is created by a call to ixCreateStopWordList and destroyed by a call to ixDeleteStopWordList. To add a word to the stopword list, call ixAddStopWord with a pointer to the word (Word) and the length (WordLength) of the word in bytes.
Typically, stopwords are words such as "and", "the", "of", "it", etc. These words do not hold much "informational" content in a text and for this reason are not often searched upon. (And typically when a user does search for these words, more search results are returned than is needed.)
ixCreateStopWordList, ixDeleteStopWordList, ixAddStopWord, ixAddStopWordList, ixIsStopWord, ixNumStopWords