diff options
author | Olivier Gayot <duskcoder@gmail.com> | 2015-01-11 02:02:07 +0100 |
---|---|---|
committer | Olivier Gayot <duskcoder@gmail.com> | 2015-01-11 03:01:46 +0100 |
commit | 65364d2e2f40807fdd03ade25917f728adc0ef77 (patch) | |
tree | e2d2e5d0a7e329f50009a086959b4226fe27dde7 /blits.h | |
parent | d590bfdcdfa8799439cffa41fc74346e9923b6e7 (diff) |
coding rules: stop at 78 colsrewrite
Signed-off-by: Olivier Gayot <duskcoder@gmail.com>
Diffstat (limited to 'blits.h')
-rw-r--r-- | blits.h | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -5,12 +5,14 @@ #include "players.h" #include "entry.h" -void display_incr(SURFACES *surfaces, POSITIONS *positions, struct character_t *target, unsigned int incr, SDL_Color color); +void display_incr(SURFACES *, POSITIONS *, struct chr_t *target, + unsigned int incr, SDL_Color color); -void blit_team(SURFACES *surfaces, struct team_t *team); +void blit_team(SURFACES *, struct team_t *team); -void blit_character(SURFACES *surfaces, struct character_t *chr); -void update_selected_target(SURFACES *surfaces, POSITIONS *positions, struct target_t *target); -void update_list_entries(SURFACES *surfaces, POSITIONS *positions, const struct entry_t *entries, int cnt, int selected); +void blit_character(SURFACES *, struct chr_t *chr); +void update_selected_target(SURFACES *, POSITIONS *, struct target_t *target); +void update_list_entries(SURFACES *, POSITIONS *, + const struct entry_t *entries, int cnt, int selected); #endif /* BLITS_H */ |