12345678910111213141516171819202122232425262728293031323334353637383940414243 |
-
- #ifndef _UTILS_TGA_H
- #define _UTILS_TGA_H
-
-
- int tgaCheck(FILE *f);
-
-
- int tgaLoad(FILE *f, unsigned char **image,
- unsigned int *width, unsigned int *height, char *type);
-
-
- int tgaSave(FILE *f, unsigned char *image,
- unsigned int width, unsigned int height, char type);
-
- #endif
|