blob: 1248030ee2afabd65294554b66e389e54afebd14 (
plain)
1
2
3
4
5
6
7
8
|
#ifndef __GETPASS_H
#define __GETPASS_H
/*
* Returning non-zero will abort the continued operation!
*/
int my_getpass(void *client, char *prompt, char* buffer, int buflen );
#endif
|