mirror of
https://github.com/kiedtl/fire.git
synced 2024-11-16 04:56:38 +00:00
16 lines
220 B
C
16 lines
220 B
C
#ifndef FF_H
|
|
#define FF_H
|
|
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
#include "termbox.h"
|
|
#include "bool.h"
|
|
|
|
void ff_from_tbscr(
|
|
uint32_t width, uint32_t height,
|
|
uint8_t *img, struct tb_cell *colors,
|
|
FILE *fp
|
|
);
|
|
|
|
#endif
|