summaryrefslogtreecommitdiff
path: root/bmp.h
blob: e9b2821a4faa265aef585c3becbc505e64cef5d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef _nebula2_bmp_h_
#define _nebula2_bmp_h_

#include <stdio.h>
#include <stdint.h>

#include "color.h"

extern int bmp_write_header(FILE* fh, int32_t width, int32_t height);
extern int bmp_write_pixel(FILE* fh, color_t col);

#endif