Remove undefined functions

This commit is contained in:
Ai Lin Chia
2016-02-25 22:04:29 +01:00
parent 4fb3a573b4
commit 0e392c9921
2 changed files with 1 additions and 6 deletions

@ -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 &&

@ -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 ) ;