aboutsummaryrefslogtreecommitdiff
path: root/include/libbb.h
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-10-26 23:32:43 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-10-26 23:32:43 +0000
commit538bafcccf3351e71239422ea57c9937d85fab7c (patch)
tree3f6522c749c32000d84cc941477c42303d2806c5 /include/libbb.h
parent467f463615e7329b267abea02da9ed9cedd2382b (diff)
downloadbusybox-w32-538bafcccf3351e71239422ea57c9937d85fab7c.tar.gz
busybox-w32-538bafcccf3351e71239422ea57c9937d85fab7c.tar.bz2
busybox-w32-538bafcccf3351e71239422ea57c9937d85fab7c.zip
Fix minor breakage in previous commit
git-svn-id: svn://busybox.net/trunk/busybox@16448 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to '')
-rw-r--r--include/libbb.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/libbb.h b/include/libbb.h
index da936d66e..234ba122f 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -245,10 +245,10 @@ extern off_t bb_copyfd_eof(int fd1, int fd2);
245extern char bb_process_escape_sequence(const char **ptr); 245extern char bb_process_escape_sequence(const char **ptr);
246extern char *bb_get_last_path_component(char *path); 246extern char *bb_get_last_path_component(char *path);
247 247
248/* Prints to stdout closes entire FILE. Exits on error: */ 248/* Reads and prints to stdout till eof, then closes FILE. Exits on error: */
249extern void xprint_and_close_file(FILE *file); 249extern void xprint_and_close_file(FILE *file);
250extern char *xmalloc_fgets(FILE *file); 250extern char *xmalloc_fgets(FILE *file);
251/* /* Read up to (and including) TERMINATING_STRING: */ 251/* Read up to (and including) TERMINATING_STRING: */
252extern char *xmalloc_fgets_str(FILE *file, const char *terminating_string); 252extern char *xmalloc_fgets_str(FILE *file, const char *terminating_string);
253/* Chops off '\n' from the end, unlike fgets: */ 253/* Chops off '\n' from the end, unlike fgets: */
254extern char *xmalloc_getline(FILE *file); 254extern char *xmalloc_getline(FILE *file);