mydumper/getPassword.c

11 lines
179 B
C
Raw Normal View History

2019-08-09 13:38:00 +02:00
#include <stdio.h>
#include <unistd.h>
#include "getPassword.h"
char* passwordPrompt(void) {
char *password;
password = getpass("Enter MySQL Password: ");
return password;
}