Information hiding - moved all of command input parsing to misc.c 256/head
authorAaron Traas <aaron@traas.org>
Thu, 20 Jul 2017 20:02:54 +0000 (16:02 -0400)
committerAaron Traas <aaron@traas.org>
Thu, 20 Jul 2017 20:02:54 +0000 (16:02 -0400)
commita167945e1963c5fdf4d2ad0283d249cb35d28508
tree4427fd171b108353d9aa028ac67a0f44ae549b45
parent10d681ebebadb5bd3c6afc27676d2e8d069ff1f5
Information hiding - moved all of command input parsing to misc.c

get_command_input() is effectively an I/O function that takes raw input
and makes it into a command_t. With other I/O functions, it belongs in
misc.c.

This alos allowed me to make 4 other functions static, as they were only
called by get_command_input();
advent.h
main.c
misc.c