Move struct definition

modified:   src/nms.c
This commit is contained in:
Brian Barto 2016-04-11 18:42:23 -04:00
parent 5f5c70fee7
commit ad7fa569bb
1 changed files with 10 additions and 9 deletions

View File

@ -15,21 +15,22 @@
#define KMAG "\x1B[35m"
#define KCYN "\x1B[36m"
struct winpos {
char source;
char mask;
int row;
int col;
int s1_time;
int s2_time;
struct winpos *next;
};
int getTermSizeRows(void);
int getTermSizeCols(void);
void clearTermWindow(int, int);
char getMaskChar(void);
int main(void) {
struct winpos {
char source;
char mask;
int row;
int col;
int s1_time;
int s2_time;
struct winpos *next;
};
struct winpos *list_pointer = NULL;
struct winpos *start; // Always points to start of list
struct winpos *temp; // Used for free()ing the list