diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2010-01-13 21:00:23 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2010-01-13 21:00:23 +0000 |
commit | 90b96b68e0fedbc1d76e8547cad39c57021d5119 (patch) | |
tree | 115d59e288347288b4ab1fa913bc783383a55805 /util/nvramtool/hexdump.h | |
parent | 766db7ea09addca79d91436cb7ac06a9bff491a5 (diff) |
indent all of nvramtool to make it fit into coreboot's
coding style
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5007 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/nvramtool/hexdump.h')
-rw-r--r-- | util/nvramtool/hexdump.h | 29 |
1 files changed, 14 insertions, 15 deletions
diff --git a/util/nvramtool/hexdump.h b/util/nvramtool/hexdump.h index bd21ed9749..a63ec02f98 100644 --- a/util/nvramtool/hexdump.h +++ b/util/nvramtool/hexdump.h @@ -81,17 +81,16 @@ typedef int (*is_printable_fn_t) (unsigned char c); * printable. A value of NULL will cause * default_is_printable_fn to be used. *--------------------------------------------------------------------------*/ -typedef struct - { int bytes_per_line; - int addrprint_width; - const char *indent; - const char *sep1; - const char *sep2; - const char *sep3; - unsigned char nonprintable; - is_printable_fn_t is_printable_fn; - } -hexdump_format_t; +typedef struct { + int bytes_per_line; + int addrprint_width; + const char *indent; + const char *sep1; + const char *sep2; + const char *sep3; + unsigned char nonprintable; + is_printable_fn_t is_printable_fn; +} hexdump_format_t; /*-------------------------------------------------------------------------- * hexdump @@ -109,8 +108,8 @@ hexdump_format_t; * format: A structure specifying how the hex dump should be * formatted. *--------------------------------------------------------------------------*/ -void hexdump (const void *mem, int bytes, uint64_t addrprint_start, - FILE *outfile, const hexdump_format_t *format); +void hexdump(const void *mem, int bytes, uint64_t addrprint_start, + FILE * outfile, const hexdump_format_t * format); /*-------------------------------------------------------------------------- * default_is_printable_fn @@ -126,6 +125,6 @@ void hexdump (const void *mem, int bytes, uint64_t addrprint_start, * return value: * Return 1 if the input character is printable. Otherwise return 0. *--------------------------------------------------------------------------*/ -int default_is_printable_fn (unsigned char c); +int default_is_printable_fn(unsigned char c); -#endif /* _HEXDUMP_H */ +#endif /* _HEXDUMP_H */ |