14c58546a7
In practice, these headers are included only once, but it's a good practice to always use include guards.
8 lines
104 B
C
8 lines
104 B
C
#ifndef TINYXPM_H
|
|
#define TINYXPM_H
|
|
|
|
#include <SDL2/SDL.h>
|
|
|
|
SDL_Surface *read_xpm(char *xpm[]);
|
|
|
|
#endif
|