tga.h 168 B

12345678910
  1. #ifndef __LIB_TGA_H
  2. #define __LIB_TGA_H
  3. #include <lib/gfx.h>
  4. #include <sys/types.h>
  5. gfx_surface *tga_decode(const void *ptr, size_t len, gfx_format format);
  6. #endif