Lines Matching refs:inpstr
26 char inpstr[LINEWIDTH]; in sox_datstartread() local
33 while ((status = lsx_reads(ft, inpstr, LINEWIDTH-1)) != SOX_EOF) { in sox_datstartread()
34 inpstr[LINEWIDTH-1] = 0; in sox_datstartread()
35 if ((sscanf(inpstr," %c", &sc) != 0) && (sc != ';')) break; in sox_datstartread()
36 if (sscanf(inpstr," ; Sample Rate %ld", &rate)) { in sox_datstartread()
38 } else if (sscanf(inpstr," ; Channels %d", &chan)) { in sox_datstartread()
44 strncpy(((priv_t *)ft->priv)->prevline, inpstr, (size_t)LINEWIDTH); in sox_datstartread()
77 char inpstr[LINEWIDTH]; in sox_datread() local
93 strncpy(inpstr, ((priv_t *)ft->priv)->prevline, (size_t)LINEWIDTH); in sox_datread()
94 inpstr[LINEWIDTH-1] = 0; in sox_datread()
97 lsx_reads(ft, inpstr, LINEWIDTH-1); in sox_datread()
98 inpstr[LINEWIDTH-1] = 0; in sox_datread()
103 if ((sscanf(inpstr," %c", &sc) != 0) && (sc==';')) continue; in sox_datread()
106 sscanf(inpstr," %*s%n", &inpPtr); in sox_datread()
109 retc = sscanf(&inpstr[inpPtr]," %lg%n", &sampval, &inpPtrInc); in sox_datread()