From b83951ad2bf5d8029dfa0af2e73a6f3619841380 Mon Sep 17 00:00:00 2001 From: Franklin Wei Date: Fri, 22 May 2015 21:30:11 -0400 Subject: fancy curses stuff --- src/info.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/info.c') diff --git a/src/info.c b/src/info.c index c40d729..9e93d25 100644 --- a/src/info.c +++ b/src/info.c @@ -26,9 +26,8 @@ void info_handler(struct player_t *player) output("Transaction history for '%s':\n", stock->symbol); - output("================================================================================\n"); + horiz_line(); print_history(stock); - output("================================================================================\n"); - + horiz_line(); output("Current price: $%llu.%02llu\n", stock->current_price.cents / 100, stock->current_price.cents % 100); } -- cgit v1.1