8 lines
139 B
C
8 lines
139 B
C
|
#ifndef __UTIL_H__
|
||
|
#define __UTIL_H__
|
||
|
|
||
|
#include "types.h"
|
||
|
|
||
|
u8* image_to_tiles(const char* image, u32 width, u32 height, u32* size);
|
||
|
|
||
|
#endif
|