Home
last modified time | relevance | path

Searched refs:inputFS (Results 1 – 3 of 3) sorted by relevance

/mirbsd/src/usr.bin/awk/
Dlib.c51 char inputFS[100] = " "; variable
203 if (strlen(*FS) >= sizeof(inputFS)) in readrec()
206 strlcpy(inputFS, *FS, sizeof inputFS); /* for subsequent field splitting */ in readrec()
296 strlcpy(inputFS, *FS, sizeof(inputFS)); in fldbld()
297 if (strlen(inputFS) > 1) { /* it's a regular expression */ in fldbld()
298 i = refldbld(r, inputFS); in fldbld()
299 } else if ((sep = *inputFS) == ' ') { /* default whitespace */ in fldbld()
318 } else if ((sep = *inputFS) == 0) { /* new: FS="" => 1 char/field */ in fldbld()
498 dprintf( ("in recbld inputFS=%s, fldtab[0]=%p\n", inputFS, (void*)fldtab[0]) ); in recbld()
505 dprintf( ("in recbld inputFS=%s, fldtab[0]=%p\n", inputFS, (void*)fldtab[0]) ); in recbld()
Dawk.h70 extern char inputFS[]; /* FS at time of input, for field splitting */
DFIXES104 minor fix in lib.c: increase inputFS to 100, change malloc
468 after a getline var; because inputFS wasn't initialized,