no-more-secrets-rust/src/nms.h
Brian Barto 53f3835195 Added option to show cursor during "type" and "jumble" loops.
modified:   src/main.c
	modified:   src/nms.c
	modified:   src/nms.h
2016-04-20 18:16:19 -04:00

22 lines
339 B
C

#ifndef NMS_H
#define NMS_H 1
#include <stdbool.h>
#define INIT_NMSARGS { NULL, NULL, -1, -1, false }
typedef struct {
char *src;
char *return_opts;
int input_cursor_x;
int input_cursor_y;
bool show_cursor;
} NmsArgs;
// Function prototypes
// Display the characters stored in the display queue
char nms_exec(NmsArgs *);
#endif