scrcpy/app/src/tinyxpm.h
Romain Vimont 14c58546a7 Add missing include guards
In practice, these headers are included only once, but it's a good
practice to always use include guards.
2018-02-08 15:26:08 +01:00

8 lines
104 B
C

#ifndef TINYXPM_H
#define TINYXPM_H
#include <SDL2/SDL.h>
SDL_Surface *read_xpm(char *xpm[]);
#endif