Write simple farbfeld-writing module

This commit is contained in:
Camden Dixie O'Brien
2025-09-23 15:35:26 +01:00
commit e58e5c3967
3 changed files with 107 additions and 0 deletions

8
include/ff.h Normal file
View File

@@ -0,0 +1,8 @@
#ifndef FF_H
#define FF_H
#include "img.h"
void ff_write(int fd, img_t img);
#endif