mirror of
https://github.com/privacore/open-source-search-engine.git
synced 2025-07-11 02:16:07 -04:00
Remove undefined functions
This commit is contained in:
@ -544,8 +544,7 @@ static uint8_t s_findMaxIndex(int64_t *array, int num, int *wantmax = NULL) {
|
||||
|
||||
unsigned char Words::isBounded(int wordi) {
|
||||
if(wordi+1 < m_numWords &&
|
||||
getWord(wordi)[getWordLen(wordi)] == '/' //||
|
||||
//getWord(wordi)[getWordLen(wordi)] == '?'
|
||||
getWord(wordi)[getWordLen(wordi)] == '/'
|
||||
)
|
||||
return(true);
|
||||
if(wordi+1 < m_numWords &&
|
||||
|
4
Words.h
4
Words.h
@ -23,10 +23,6 @@
|
||||
// make sure it does not slow us down!!
|
||||
#define WORDS_LOCALBUFSIZE 80
|
||||
|
||||
// an upper bound really
|
||||
int32_t countWords ( char *p ) ;
|
||||
int32_t countWords ( char *p , int32_t plen );
|
||||
|
||||
int32_t printstring ( char *s , int32_t len ) ;
|
||||
|
||||
char *getFieldValue ( char *s ,int32_t slen, char *field , int32_t *valueLen ) ;
|
||||
|
Reference in New Issue
Block a user