File: getPassword.c

package info (click to toggle)
mydumper 0.10.1-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 680 kB
  • sloc: ansic: 4,381; sh: 119; sql: 7; makefile: 3; cpp: 3
file content (10 lines) | stat: -rw-r--r-- 182 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>
#include <unistd.h>
#include "getPassword.h"

char *passwordPrompt(void) {
  char *password;
  password = getpass("Enter MySQL Password: ");

  return password;
}