mirror of
https://github.com/curl/curl.git
synced 2025-02-17 14:59:45 +08:00
9 lines
170 B
C
9 lines
170 B
C
#ifndef __GETPASS_H
|
|
#define __GETPASS_H
|
|
/*
|
|
* Returning NULL will abort the continued operation!
|
|
*/
|
|
char* getpass_r(char *prompt, char* buffer, size_t buflen );
|
|
|
|
#endif
|