From 5f5c70fee7650ecf3d62703378665adf89c502bb Mon Sep 17 00:00:00 2001 From: Brian Barto Date: Mon, 11 Apr 2016 16:56:44 -0400 Subject: [PATCH] Add some more ascii characters to the mask set modified: src/nms.c --- src/nms.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/nms.c b/src/nms.c index 2ada94a..494e787 100644 --- a/src/nms.c +++ b/src/nms.c @@ -216,7 +216,8 @@ void clearTermWindow(int pRows, int pCols) { char getMaskChar(void) { char *maskChars = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" "abcdefghijklmnopqrstuvwxyz" - "1234567890"; + "1234567890" + "!@#$%^&*()-_=+{}[]:;|\\\"'<>,.?/"; return maskChars[rand() % strlen(maskChars)]; }