freebsd-dev/usr.bin/ncftp/getpass.h
Andrey A. Chernov b7b69dce5b ncftp 1.8.5
1994-09-22 23:45:37 +00:00

24 lines
370 B
C

/* Getpass.h */
#ifndef _getpass_h_
#define _getpass_h_
/* $RCSfile: getpass.h,v $
* $Revision: 14020.11 $
* $Date: 93/05/21 05:45:36 $
*/
#define kMaxPassLen 127
#ifdef GETPASS
extern char *getpass(); /* Use the system supplied getpass. */
#else
char *Getpass(char *prompt);
#endif
void Echo(FILE *fp, int on);
#endif /* _getpass_h_ */
/* eof Getpass.h */