no-more-secrets-rust/src/nms.h
Brian Barto 908c535277 Endlessly documenting...
modified:   README.md
	modified:   src/nms.h
2016-04-25 17:40:09 -04:00

23 lines
408 B
C

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