Mercurial > hg > early-roguelike
diff xrogue/bolt.c @ 220:f54901b9c39b
XRogue: convert to ANSI-style function declarations.
author | John "Elwin" Edwards |
---|---|
date | Wed, 02 Mar 2016 21:13:26 -0500 |
parents | e6179860cb76 |
children | 7c1cb43f346e |
line wrap: on
line diff
--- a/xrogue/bolt.c Fri Feb 19 21:02:28 2016 -0500 +++ b/xrogue/bolt.c Wed Mar 02 21:13:26 2016 -0500 @@ -18,6 +18,7 @@ #include <curses.h> #include <ctype.h> +#include <string.h> #include "rogue.h" /* @@ -25,13 +26,9 @@ * given direction */ -shoot_bolt(shooter, start, dir, get_points, reason, name, damage) -struct thing *shooter; -coord start, dir; -bool get_points; -short reason; -char *name; -int damage; +void +shoot_bolt(struct thing *shooter, coord start, coord dir, bool get_points, + short reason, char *name, int damage) { unsigned char dirch = 0, ch; bool used, change, see_him;