Lines Matching defs:sep
225 int sep, c, isrec; // POTENTIAL BUG? isrec is a macro in awk.h
250 if ((sep = *rs) == 0) {
251 sep = '\n';
258 for (; (c=getc(inf)) != sep && c != EOF; ) {
265 if (*rs == sep || c == EOF)
296 int sep, c;
301 sep = '\n'; /* the only separator; have to skip over \n embedded in "..." */
304 if (c == sep) {
379 char *r, *fr, sep;
401 } else if (!CSV && (sep = *inputFS) == ' ') { /* default whitespace */
454 } else if ((sep = *inputFS) == 0) { /* new: FS="" => 1 char/field */
486 while (*r != sep && *r != rtest && *r != '\0') /* \n is always a separator */
639 char *sep = getsval(ofsloc);
651 if (!adjbuf(&record, &recsize, 2+strlen(sep)+r-record, recsize, &r, "recbld 2"))
653 for (p = sep; (*r = *p++) != 0; )