Checks if Lump is a valid Gif lump.
| 64 | |
| 65 | //! Checks if Lump is a valid Gif lump. |
| 66 | ILboolean ilIsValidGifL(const void *Lump, ILuint Size) |
| 67 | { |
| 68 | iSetInputLump(Lump, Size); |
| 69 | return iIsValidGif(); |
| 70 | } |
| 71 | |
| 72 | |
| 73 | // Internal function to get the header and check it. |
no test coverage detected