no-more-secrets-rust/src/nms.h

17 lines
262 B
C
Raw Normal View History

#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