no-more-secrets-rust/src/nms.h
Brian Barto 9959d6f98f Changes nmsexec() to accept a structure containing it's multiple arguments. This made
more sense than passing a growing list of arguments.

	modified:   src/main.c
	modified:   src/nms.c
	modified:   src/nms.h
	modified:   src/sneakers.c
2016-04-20 17:08:35 -04:00

17 lines
262 B
C

#ifndef NMS_H
#define NMS_H 1
#define INIT_NMSARGS { .src = NULL, .return_opts = NULL }
typedef struct {
char *src;
char *return_opts;
} NMSArgs;
// Function prototypes
// Display the characters stored in the display queue
char nmsexec(NMSArgs *);
#endif