Lines Matching refs:infile
1259 ** infile -- input (encoded) string
1265 ** -1 if infile completely decoded into outfile
1266 ** >= 0 is the position in infile decoding
1271 mime_fromqp(infile, outfile, maxlen)
1272 unsigned char *infile;
1284 b = infile;
1285 while ((c1 = *infile++) != '\0' && nchar < maxlen)
1289 if ((c1 = *infile++) == '\0')
1301 if ((c2 = *infile++) == '\0')
1324 return (infile - b - 1);