version 0.2
[zeRace] / sdl.h
diff --git a/sdl.h b/sdl.h
index a613c93..193d175 100644 (file)
--- a/sdl.h
+++ b/sdl.h
@@ -1,7 +1,11 @@
+/* some useful functions for zeRace game */
+
+#include <string.h>
 #include <SDL.h>
 #include <SDL_image.h>
 
 void print(SDL_Surface *dst,int x,int y,unsigned char *text);
+void readstring(SDL_Surface *dst,int x,int y,unsigned char *text,int limit);
 Uint32 getpixel(SDL_Surface *surface, int x, int y);
 void putpixel(SDL_Surface *surface, int x, int y, Uint32 pixel);
 void setpixel(SDL_Surface *screen, int x, int y, Uint8 r, Uint8 g, Uint8 b);