Changed my typedef name to proper camel case

modified:   src/main.c
	modified:   src/nms.c
	modified:   src/nms.h
	modified:   src/sneakers.c
This commit is contained in:
Brian Barto 2016-04-20 17:24:11 -04:00
parent 9959d6f98f
commit 227b5a7344
4 changed files with 5 additions and 5 deletions

View File

@ -4,7 +4,7 @@
int main(void) {
char *input;
NMSArgs args = INIT_NMSARGS;
NmsArgs args = INIT_NMSARGS;
// Geting input
int c, inSize = 0;

View File

@ -54,7 +54,7 @@ char getMaskChar(void);
* displaying a menu.
*
*/
char nmsexec(NMSArgs *args) {
char nmsexec(NmsArgs *args) {
struct winpos *list_pointer = NULL;
struct winpos *start; // Always points to start of list
struct winpos *temp; // Used for free()ing the list

View File

@ -6,11 +6,11 @@
typedef struct {
char *src;
char *return_opts;
} NMSArgs;
} NmsArgs;
// Function prototypes
// Display the characters stored in the display queue
char nmsexec(NMSArgs *);
char nmsexec(NmsArgs *);
#endif

View File

@ -22,7 +22,7 @@ int main(void) {
char *menu6 = "[6] Remote Operator Logon/Logoff";
char *foot1Center = "================================================================";
char *foot2Center = "[ ] Select Option or ESC to Abort";
NMSArgs args = INIT_NMSARGS;
NmsArgs args = INIT_NMSARGS;
// Get terminal dimentions (needed for centering)
struct winsize w;