summaryrefslogtreecommitdiff
path: root/bmp.h
diff options
context:
space:
mode:
authorKevin Chabowski <kevin@kch42.de>2013-08-04 23:56:50 +0200
committerKevin Chabowski <kevin@kch42.de>2013-08-04 23:56:50 +0200
commit4627f895d1f266b2c0a18c952a1eb703e59aeeb9 (patch)
treeb6ad2b004309bf040b0852db9fe40592c617d42b /bmp.h
parent8bb5248464cb483160e8a5c2aaa5e8a6061ffd1e (diff)
downloadnebula2-4627f895d1f266b2c0a18c952a1eb703e59aeeb9.tar.gz
nebula2-4627f895d1f266b2c0a18c952a1eb703e59aeeb9.tar.bz2
nebula2-4627f895d1f266b2c0a18c952a1eb703e59aeeb9.zip
Formatted code
Diffstat (limited to 'bmp.h')
-rw-r--r--bmp.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/bmp.h b/bmp.h
index 89ab893..a1753cd 100644
--- a/bmp.h
+++ b/bmp.h
@@ -8,13 +8,13 @@
typedef struct {
int32_t width, height;
- size_t line_padding;
- size_t line_left;
- FILE* fh;
+ size_t line_padding;
+ size_t line_left;
+ FILE* fh;
} bmp_write_handle_t;
extern bmp_write_handle_t* bmp_create(const char* fn, int32_t width, int32_t height);
extern int bmp_write_pixel(bmp_write_handle_t* bmph, color_t col);
extern void bmp_destroy(bmp_write_handle_t* bmph);
-#endif \ No newline at end of file
+#endif