fileops.h (295B)
1 /* file i/o operations */ 2 #pragma once 3 4 #include <stdint.h> 5 #include <stddef.h> 6 #include <assert.h> 7 #include <stdio.h> 8 #include <stdlib.h> 9 #include "animation.h" 10 11 int FileRead(const char *filename, const uint8_t **data, size_t *size); 12 void WebpWrite(const char *path, Animation *img, int cols);