Home
last modified time | relevance | path

Searched refs:nextptr (Results 1 – 1 of 1) sorted by relevance

/external/tesseract/viewer/
Dscrollview.cpp811 const char* nextptr = strchr(input, '\''); in AddEscapeChars() local
815 while (nextptr != NULL) { in AddEscapeChars()
816 strncpy(message+pos, lastptr, nextptr-lastptr); in AddEscapeChars()
817 pos += nextptr - lastptr; in AddEscapeChars()
820 lastptr = nextptr; in AddEscapeChars()
821 nextptr = strchr(nextptr+1, '\''); in AddEscapeChars()