diff options
author | 2023-10-28 19:14:43 +0600 | |
---|---|---|
committer | 2023-10-28 19:14:43 +0600 | |
commit | 3b796b3be7fcdd8f6335474dae07c9a0ddd31f6c (patch) | |
tree | cce585a6c1ee7f045f2584c12a965adb05e444cd | |
parent | 06d3ab6ce203be3cb8a9d5bdcf86224b48fa3006 (diff) | |
download | c-obp-example-3b796b3be7fcdd8f6335474dae07c9a0ddd31f6c.tar.gz c-obp-example-3b796b3be7fcdd8f6335474dae07c9a0ddd31f6c.zip |
Fix indents
Signed-off-by: Mubashshir <ahmubashshir@gmail.com>
-rw-r--r-- | src/teams.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/teams.h b/src/teams.h index 87cc01f..e22b262 100644 --- a/src/teams.h +++ b/src/teams.h @@ -11,13 +11,13 @@ NEW(team); DEL(team); // field getters -SETTER(team, name, char *); +SETTER(team, name, char *); SETTER(team, institution, char *); SETTER(team, member_name, char *, int); SETTER(team, solved, uint8_t); // field setters -GETTER(team, name, char *); +GETTER(team, name, char *); GETTER(team, institution, char *); GETTER(team, member_name, char *, int); GETTER(team, solved, uint8_t); @@ -29,3 +29,4 @@ DEFINE(team, find_champion, team, team *, unsigned); # include "cobj.h" #endif /* __TEAMS_H__ */ +/* vim: ts=8 */ |