home · contact · privacy
Added #include guards.
[plomrogue] / src / draw_wins.h
index 64f332ccfc7283ef4c1bc4e7302020ee23f42b49..d3a8b9dcc2f8d568e5b091acb4c7eb0685464d3b 100644 (file)
@@ -1,6 +1,11 @@
+#ifndef DRAW_WINS_H
+#define DRAW_WINS_H
+
 void draw_with_linebreaks (struct Win *, char *, uint16_t);
 void draw_text_from_bottom (struct Win *, char *);
 void draw_log_win (struct Win *);
 void draw_map_win (struct Win *);
 void draw_info_win (struct Win *);
 void draw_keys_win (struct Win *);
+
+#endif