mirror of
https://github.com/moparisthebest/curl
synced 2024-11-10 11:35:07 -05:00
9 lines
169 B
C
9 lines
169 B
C
#ifndef __GETPASS_H
|
|
#define __GETPASS_H
|
|
/*
|
|
* Returning non-zero will abort the continued operation!
|
|
*/
|
|
int getpass_r(char *prompt, char* buffer, int buflen );
|
|
|
|
#endif
|