Searched refs:inputFS (Results 1 – 3 of 3) sorted by relevance
/external/one-true-awk/ |
D | lib.c | 43 char inputFS[100] = " "; variable 193 if (strlen(*FS) >= sizeof(inputFS)) in readrec() 196 strcpy(inputFS, *FS); /* for subsequent field splitting */ in readrec() 286 strcpy(inputFS, *FS); in fldbld() 287 if (strlen(inputFS) > 1) { /* it's a regular expression */ in fldbld() 288 i = refldbld(r, inputFS); in fldbld() 289 } else if ((sep = *inputFS) == ' ') { /* default whitespace */ in fldbld() 308 } else if ((sep = *inputFS) == 0) { /* new: FS="" => 1 char/field */ in fldbld() 488 dprintf( ("in recbld inputFS=%s, fldtab[0]=%p\n", inputFS, (void*)fldtab[0]) ); in recbld() 495 dprintf( ("in recbld inputFS=%s, fldtab[0]=%p\n", inputFS, (void*)fldtab[0]) ); in recbld()
|
D | awk.h | 69 extern char inputFS[]; /* FS at time of input, for field splitting */
|
D | FIXES | 115 minor fix in lib.c: increase inputFS to 100, change malloc 479 after a getline var; because inputFS wasn't initialized,
|