OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:inputFS
(Results
1 - 3
of
3
) sorted by null
/ndk/sources/host-tools/nawk-20071023/
lib.c
43
char
inputFS
[100] = " ";
188
if (strlen(*FS) >= sizeof(
inputFS
))
190
strcpy(
inputFS
, *FS); /* for subsequent field splitting */
277
if (strlen(
inputFS
) > 1) { /* it's a regular expression */
278
i = refldbld(r,
inputFS
);
279
} else if ((sep = *
inputFS
) == ' ') { /* default whitespace */
298
} else if ((sep = *
inputFS
) == 0) { /* new: FS="" => 1 char/field */
478
dprintf( ("in recbld
inputFS
=%s, fldtab[0]=%p\n",
inputFS
, fldtab[0]) );
485
dprintf( ("in recbld
inputFS
=%s, fldtab[0]=%p\n", inputFS, fldtab[0]) )
[
all
...]
awk.h
69
extern char
inputFS
[]; /* FS at time of input, for field splitting */
FIXES
29
minor fix in lib.c: increase
inputFS
to 100, change malloc
393
after a getline var; because
inputFS
wasn't initialized,
[
all
...]
Completed in 44 milliseconds