home *** CD-ROM | disk | FTP | other *** search
/ ftp.ncftp.com / ftp.ncftp.com.zip / ftp.ncftp.com / ncftp / ncftp-1.9.5.tar.gz / ncftp-1.9.5.tar / ncftp-1.9.5 / getpass.h < prev    next >
C/C++ Source or Header  |  1995-10-01  |  370b  |  24 lines

  1. /* Getpass.h */
  2.  
  3. #ifndef _getpass_h_
  4. #define _getpass_h_
  5.  
  6. /*  $RCSfile: getpass.h,v $
  7.  *  $Revision: 14020.11 $
  8.  *  $Date: 93/05/21 05:45:36 $
  9.  */
  10.  
  11. #define kMaxPassLen 127
  12.  
  13. #ifdef GETPASS
  14. extern char *getpass();    /* Use the system supplied getpass. */
  15. #else
  16. char *Getpass(char *prompt);
  17. #endif
  18.  
  19. void Echo(FILE *fp, int on);
  20.  
  21. #endif    /* _getpass_h_ */
  22.  
  23. /* eof Getpass.h */
  24.