ab912c23e7
This enables necessary functions once for all. As a consequence, define common.h before any other header.
11 lines
126 B
C
11 lines
126 B
C
#ifndef TINYXPM_H
|
|
#define TINYXPM_H
|
|
|
|
#include "common.h"
|
|
|
|
#include <SDL2/SDL.h>
|
|
|
|
SDL_Surface *
|
|
read_xpm(char *xpm[]);
|
|
|
|
#endif
|