Skip to content
This repository has been archived by the owner on May 12, 2024. It is now read-only.

Commit

Permalink
Update tga.h
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinAlavik authored Feb 24, 2024
1 parent d1e3a67 commit 3cf36bd
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/corelib/tga.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#ifndef __TGA_H__
#define __TGA_H__

#ifdef __cplusplus
extern "C" {
#endif

unsigned int *tga_parse(unsigned char *ptr, int size);

void draw_targa_image(char *image, int x, int y);

#ifdef __cplusplus
}
#endif

#endif /* __TGA_H__ */

0 comments on commit 3cf36bd

Please sign in to comment.