9 lines
143 B
C
9 lines
143 B
C
#ifndef BUFFER_H_
|
|
#define BUFFER_H_
|
|
|
|
#include "data.h"
|
|
|
|
int new_buffer(enum buffer_type type, char * filename, int width, int height);
|
|
|
|
#endif
|