00001
00002
00003 #ifndef _INTERFACE_H_
00004 #define _INTERFACE_H_
00005
00006
00007
00008
00009
00010
00011 static void prompt(void);
00012
00013 static void get_input(void);
00014
00015 static int white(char c);
00016
00017 static void parse_input(void);
00018
00019 static int equals(char *s1, char *s2);
00020
00021 static void show_vars();
00022
00023 static char *rank(int x);
00024
00025 static void show_score(void);
00026
00027 static void print_commands(void);
00028
00029 static void do_cmd(void);
00030
00031 void interface(void);
00032
00033 #endif