Searched refs:nextptr (Results 1 – 1 of 1) sorted by relevance
811 const char* nextptr = strchr(input, '\''); in AddEscapeChars() local815 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()