home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / AP / TERMNET / NCFTP183 / GETPASS.H < prev    next >
Encoding:
C/C++ Source or Header  |  1995-04-20  |  370 b   |  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.