[style] mass reformat all the non external code to 4 space indents
Ran everything through scripts/codestyle.space, which uses astyle to generally follow K&R style. Biggest non whitespace change is pulling brackets down on function declarations, which I'm pretty ambivalent about, but astyle insists on taking a stance
This commit is contained in:
@@ -30,13 +30,13 @@ typedef struct bootimage bootimage;
|
||||
bootimage *bootimage_init(void);
|
||||
|
||||
bootentry_data *bootimage_add_string(
|
||||
bootimage *img, unsigned kind, const char *s);
|
||||
bootimage *img, unsigned kind, const char *s);
|
||||
|
||||
bootentry_file *bootimage_add_filedata(
|
||||
bootimage *img, unsigned type, void *data, unsigned len);
|
||||
bootimage *img, unsigned type, void *data, unsigned len);
|
||||
|
||||
bootentry_file *bootimage_add_file(
|
||||
bootimage *img, unsigned type, const char *fn);
|
||||
bootimage *img, unsigned type, const char *fn);
|
||||
|
||||
void bootimage_done(bootimage *img);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user