Lines Matching defs:sep
228 int sep, c, isrec; // POTENTIAL BUG? isrec is a macro in awk.h
254 if ((sep = *rs) == 0) {
255 sep = '\n';
262 for (; (c=getc(inf)) != sep && c != EOF; ) {
269 if (*rs == sep || c == EOF)
301 int sep, c;
306 sep = '\n'; /* the only separator; have to skip over \n embedded in "..." */
309 if (c == sep) {
384 char *r, *fr, sep;
406 } else if (!CSV && (sep = *inputFS) == ' ') { /* default whitespace */
459 } else if ((sep = *inputFS) == 0) { /* new: FS="" => 1 char/field */
491 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; )