mirror of
https://github.com/curl/curl.git
synced 2026-05-17 15:46:20 +03:00
8 lines
184 B
C
8 lines
184 B
C
#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
|