Files

16 lines
388 B
C
Raw Permalink Normal View History

2013-08-02 13:12:24 -07:00
// Matt Wells, copyright Jul 2001
2016-03-08 22:14:30 +01:00
#ifndef GB_ABBREVIATIONS_H
#define GB_ABBREVIATIONS_H
2013-08-02 13:12:24 -07:00
#include "Unicode.h"
// . is the word with this word id an abbreviation?
// . word id is just the hash64() of the word
2014-10-30 13:36:39 -06:00
bool isAbbr ( int64_t wid , bool *hasWordAfter = NULL ) ;
2013-08-02 13:12:24 -07:00
// to free the table's memory, Process::reset() will call this
void resetAbbrTable ( ) ;
2016-03-08 22:14:30 +01:00
#endif // GB_ABBREVIATIONS_H