Home | History | Annotate | Download | only in tts

Lines Matching refs:seps

602  *  notes : the token separator set could be enlarged adding characters in "seps"
606 const char * seps = " ";
609 while ((pos<textlen) && (strchr(seps,str[pos]) != NULL)) {
613 /*no characters != seps found whithin string*/
618 while ((pos<textlen) && (strchr(seps,str[pos]) == NULL)) {
634 * notes : the sub token separator set could be enlarged adding characters in "seps"
638 const char * seps = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
647 while ((pos < textlen) && (strchr(seps, str[pos]) != NULL)) {
651 /*characters all in seps found whithin string : return full token*/
655 /*pos should be pointing to first non seps and more chars are there*/
657 while ((pos < textlen) && (strchr(seps, str[pos]) == NULL)) {
661 /*transition non seps->seps not found : return full token*/