diff options
author | Mark Whitley <markw@lineo.com> | 2000-06-28 22:15:26 +0000 |
---|---|---|
committer | Mark Whitley <markw@lineo.com> | 2000-06-28 22:15:26 +0000 |
commit | 1ca41775bbdc07cf67be79aebc566754c9c02855 (patch) | |
tree | 0ac134f0a80036aec272b04c3a057ea2ae055b20 /miscutils | |
parent | d37218941c37795cc8e96ddb3312d83fb2269d5a (diff) |
Yanked out the cstring_alloc() and cstring_lineFromFile() functions from
utility.c and replaced them with get_line_from_file() from the new grep.c.
Also changed declaration in internal.h and replaced instances of
cstring_lineFromFile() in dc.c and sort.c with get_line_from_file(). Tested
them and they worked fine.
Diffstat (limited to 'miscutils')
-rw-r--r-- | miscutils/dc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/dc.c b/miscutils/dc.c index 31a5471c3..5bf3bc984 100644 --- a/miscutils/dc.c +++ b/miscutils/dc.c @@ -170,7 +170,7 @@ int dc_main(int argc, char **argv) char *line = NULL; char *cursor = NULL; char *token = NULL; - while ((line = cstring_lineFromFile(stdin))) { + while ((line = get_line_from_file(stdin))) { cursor = line; len = number_of_tokens(line); for (i = 0; i < len; i++) { |