Move struct definition
modified: src/nms.c
This commit is contained in:
parent
5f5c70fee7
commit
ad7fa569bb
13
src/nms.c
13
src/nms.c
@ -15,12 +15,6 @@
|
|||||||
#define KMAG "\x1B[35m"
|
#define KMAG "\x1B[35m"
|
||||||
#define KCYN "\x1B[36m"
|
#define KCYN "\x1B[36m"
|
||||||
|
|
||||||
int getTermSizeRows(void);
|
|
||||||
int getTermSizeCols(void);
|
|
||||||
void clearTermWindow(int, int);
|
|
||||||
char getMaskChar(void);
|
|
||||||
|
|
||||||
int main(void) {
|
|
||||||
struct winpos {
|
struct winpos {
|
||||||
char source;
|
char source;
|
||||||
char mask;
|
char mask;
|
||||||
@ -30,6 +24,13 @@ int main(void) {
|
|||||||
int s2_time;
|
int s2_time;
|
||||||
struct winpos *next;
|
struct winpos *next;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
int getTermSizeRows(void);
|
||||||
|
int getTermSizeCols(void);
|
||||||
|
void clearTermWindow(int, int);
|
||||||
|
char getMaskChar(void);
|
||||||
|
|
||||||
|
int main(void) {
|
||||||
struct winpos *list_pointer = NULL;
|
struct winpos *list_pointer = NULL;
|
||||||
struct winpos *start; // Always points to start of list
|
struct winpos *start; // Always points to start of list
|
||||||
struct winpos *temp; // Used for free()ing the list
|
struct winpos *temp; // Used for free()ing the list
|
||||||
|
Loading…
Reference in New Issue
Block a user