diff options
| author | Mario Kilies <MarioKilies@GMX.net> | 2011-01-04 20:13:39 +0100 |
|---|---|---|
| committer | Mario Kilies <MarioKilies@GMX.net> | 2011-01-04 20:13:39 +0100 |
| commit | c076d1849d9ec07b87cde212d8db12dc890dc811 (patch) | |
| tree | 99446082551d1434e9c61b0de6dc5f31363daa9d /src/main.c | |
| parent | 5060d22270bc4c84cc5d16cf593e389e40f2b13f (diff) | |
Splitted up content from common.* to separate files (card.[ch], cardstack.[ch] and hand.h)
Diffstat (limited to 'src/main.c')
| -rw-r--r-- | src/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3,7 +3,7 @@ #include <unistd.h> #include <curses.h> #include "display.h" -#include "common.h" +#include "card.h" int main(int argc, char **argv) { @@ -14,7 +14,7 @@ int main(int argc, char **argv) display_fini(); for (int i = 1; i <= 105; i++) - printf("%d:%d\n", i, cardpoints(i)); + printf("%d:%d\n", i, card_get_points(i)); return EXIT_SUCCESS; } |
