HomeSort by relevance Sort by last modified time
    Searched refs:inputFS (Results 1 - 2 of 2) sorted by null

  /external/one-true-awk/
lib.c 43 char inputFS[100] = " ";
193 if (strlen(*FS) >= sizeof(inputFS))
196 strcpy(inputFS, *FS); /* for subsequent field splitting */
286 strcpy(inputFS, *FS);
287 if (strlen(inputFS) > 1) { /* it's a regular expression */
288 i = refldbld(r, inputFS);
289 } else if ((sep = *inputFS) == ' ') { /* default whitespace */
308 } else if ((sep = *inputFS) == 0) { /* new: FS="" => 1 char/field */
488 dprintf( ("in recbld inputFS=%s, fldtab[0]=%p\n", inputFS, (void*)fldtab[0]) )
    [all...]
awk.h 69 extern char inputFS[]; /* FS at time of input, for field splitting */

Completed in 2865 milliseconds