aeda583a2c
Limit source code to 80 chars, and declare functions return type and modifiers on a separate line. This allows to avoid very long lines, and all function names are aligned. (We do this on VLC, and I like it.)
9 lines
105 B
C
9 lines
105 B
C
#ifndef TINYXPM_H
|
|
#define TINYXPM_H
|
|
|
|
#include <SDL2/SDL.h>
|
|
|
|
SDL_Surface *
|
|
read_xpm(char *xpm[]);
|
|
|
|
#endif
|