diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-07-15 21:29:44 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-07-15 21:29:44 +0000 |
commit | 5e476bab9c6db89dfadc94a8c4fbf3082339fecf (patch) | |
tree | 0bbe5d74b3d70f4ce019d23fc0e5afd65e0cff2d /include | |
parent | e559e0a75738044403e9a43f54ccb0ac3091cd9a (diff) |
libbb: document plans to speed up line-based input
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h index 0db1658f4..3a7c2eee9 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -618,7 +618,7 @@ extern char *xmalloc_fgets(FILE *file) FAST_FUNC; /* Chops off '\n' from the end, unlike fgets: */ extern char *xmalloc_fgetline(FILE *file) FAST_FUNC; /* Same, but doesn't try to conserve space (may have some slack after the end) */ -extern char *xmalloc_fgetline_fast(FILE *file) FAST_FUNC; +/* extern char *xmalloc_fgetline_fast(FILE *file) FAST_FUNC; */ extern void die_if_ferror(FILE *file, const char *msg) FAST_FUNC; extern void die_if_ferror_stdout(void) FAST_FUNC; @@ -1006,6 +1006,7 @@ typedef struct parser_t { } parser_t; extern FILE* config_open(parser_t *parser, const char *filename) FAST_FUNC; #endif +/* TODO: add define magic to collapse ntokens/mintokens/comment into one int param */ extern char* config_read(parser_t *parser, char **tokens, int ntokens, int mintokens, const char *delims, char comment) FAST_FUNC; extern void config_close(parser_t *parser) FAST_FUNC; |