From bb8ae572ef37a248c3f1b134182152446241400b Mon Sep 17 00:00:00 2001 From: Ondrej Oprala Date: Fri, 8 Nov 2013 17:13:12 +0100 Subject: hexdump: rename struct _fs to struct hexdump_fs and remove its typedef Signed-off-by: Ondrej Oprala --- text-utils/hexdump.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'text-utils/hexdump.h') diff --git a/text-utils/hexdump.h b/text-utils/hexdump.h index b047db1a9..45c553116 100644 --- a/text-utils/hexdump.h +++ b/text-utils/hexdump.h @@ -66,11 +66,11 @@ struct hexdump_fu { char *fmt; /* format string */ }; -typedef struct _fs { /* format strings */ +struct hexdump_fs { /* format strings */ struct list_head fslist; /* linked list of format strings */ struct list_head fulist; /* linked list of format units */ int bcnt; -} FS; +}; extern struct hexdump_fu *endfu; extern struct list_head fshead; /* head of format strings list */ @@ -82,9 +82,9 @@ extern off_t skip; /* bytes to skip */ enum _vflag { ALL, DUP, FIRST, WAIT }; /* -v values */ extern enum _vflag vflag; -int block_size(FS *); +int block_size(struct hexdump_fs *); void add_fmt(const char *); -void rewrite_rules(FS *); +void rewrite_rules(struct hexdump_fs *); void addfile(char *); void display(void); void __attribute__((__noreturn__)) usage(FILE *out); -- cgit v1.2.3-55-g7522