Home | History | Annotate | Download | only in tts

Lines Matching full:seps

590  *  notes : the token separator set could be enlarged adding characters in "seps"
594 const char * seps = " ";
597 while ((pos<textlen) && (strchr(seps,str[pos]) != NULL)) {
601 /*no characters != seps found whithin string*/
606 while ((pos<textlen) && (strchr(seps,str[pos]) == NULL)) {
622 * notes : the sub token separator set could be enlarged adding characters in "seps"
626 const char * seps = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
635 while ((pos < textlen) && (strchr(seps, str[pos]) != NULL)) {
639 /*characters all in seps found whithin string : return full token*/
643 /*pos should be pointing to first non seps and more chars are there*/
645 while ((pos < textlen) && (strchr(seps, str[pos]) == NULL)) {
649 /*transition non seps->seps not found : return full token*/