open-source-search-engine/Abbreviations.h
mwells e925012dce change a couple of possible reserved names in C++
to non-reserved names. #define _ADDRESS_H_ to
_GB_ADDRESS_H_ etc.
2013-08-28 22:59:01 -06:00

17 lines
429 B
C

// Matt Wells, copyright Jul 2001
// i guess _ABBREVIATIONS_H_ is reserved, so prepend _GB
#ifndef _GB_ABBREVIATIONS_H_
#define _GB_ABBREVIATIONS_H_
#include "Unicode.h"
// . is the word with this word id an abbreviation?
// . word id is just the hash64() of the word
bool isAbbr ( long long wid , bool *hasWordAfter = NULL ) ;
// to free the table's memory, Process::reset() will call this
void resetAbbrTable ( ) ;
#endif