emote2ss

Animated webp to spritesheets converting tool
git clone git://bsandro.tech/emote2ss
Log | Files | Refs | README | LICENSE

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);