diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/busybox.h | 4 | ||||
-rw-r--r-- | include/libbb.h | 6 | ||||
-rw-r--r-- | include/unarchive.h | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/include/busybox.h b/include/busybox.h index ba4edcaba..f6f575957 100644 --- a/include/busybox.h +++ b/include/busybox.h @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * - * Based in part on code from sash, Copyright (c) 1999 by David I. Bell + * Based in part on code from sash, Copyright (c) 1999 by David I. Bell * Permission has been granted to redistribute this code under the GPL. * */ @@ -81,7 +81,7 @@ extern const struct BB_applet applets[]; * applet usage strings. These are all of the form: * extern int foo_main(int argc, char **argv); * extern const char foo_usage[]; - * These are all autogenerated from the set of currently defined applets. + * These are all autogenerated from the set of currently defined applets. */ #define PROTOTYPES #include "applets.h" diff --git a/include/libbb.h b/include/libbb.h index 7814c4b8e..a01a0ca3e 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * - * Based in part on code from sash, Copyright (c) 1999 by David I. Bell + * Based in part on code from sash, Copyright (c) 1999 by David I. Bell * Permission has been granted to redistribute this code under the GPL. * */ @@ -130,7 +130,7 @@ extern int get_kernel_revision(void); extern int get_console_fd(void); extern struct mntent *find_mount_point(const char *name, const char *table); -extern void write_mtab(char* blockDevice, char* directory, +extern void write_mtab(char* blockDevice, char* directory, char* filesystemType, long flags, char* string_flags); extern void erase_mtab(const char * name); extern long *find_pid_by_name( const char* pidName); @@ -276,7 +276,7 @@ enum { MEGABYTE = (KILOBYTE*1024), GIGABYTE = (MEGABYTE*1024) }; -const char *make_human_readable_str(unsigned long long size, +const char *make_human_readable_str(unsigned long long size, unsigned long block_size, unsigned long display_unit); int bb_ask_confirmation(void); diff --git a/include/unarchive.h b/include/unarchive.h index bbf11b557..1679b73ab 100644 --- a/include/unarchive.h +++ b/include/unarchive.h @@ -37,7 +37,7 @@ typedef struct archive_handle_s { /* process the data component, e.g. extract to filesystem */ void (*action_data)(struct archive_handle_s *); - + /* How to process any sub archive, e.g. get_header_tar_gz */ char (*action_data_subarchive)(struct archive_handle_s *); |