This patch from Adam Heath <doogie@debian.org>, makes print_file

(used by cat, grep, sed, etc) quite a bit faster.
This commit is contained in:
Eric Andersen
2001-05-15 17:48:09 +00:00
parent c911a4389b
commit 55f9872616
5 changed files with 72 additions and 6 deletions

View File

@ -128,6 +128,7 @@ extern pid_t* find_pid_by_name( char* pidName);
extern char *find_real_root_device_name(const char* name);
extern char *get_line_from_file(FILE *file);
extern void print_file(FILE *file);
extern size_t copyfd(int fd1, int fd2);
extern int print_file_by_name(char *filename);
extern char process_escape_sequence(const char **ptr);
extern char *get_last_path_component(char *path);