gifread.hpp 138 B

12345678910
  1. #ifndef _GIF_READ_H_
  2. #define _GIF_READ_H_
  3. #include "image.hpp"
  4. #include "palette.hpp"
  5. image *read_gif(char *fn, palette *&pal);
  6. #endif