home *** CD-ROM | disk | FTP | other *** search
/ PC Extra Super CD 1998 January / PCPLUS131.iso / DJGPP / V2 / DJLSR201.ZIP / src / libc / compat / stdlib / getpass.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-10-01  |  264 b   |  14 lines

  1. /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
  2. #include <stdlib.h>
  3.  
  4. char *
  5. getpass(const char *prompt)
  6. {
  7.   static char password_buffer[9];
  8.  
  9.   if (getlongpass(prompt, password_buffer, 9) < 0)
  10.     return 0;
  11.   return password_buffer;
  12. }
  13.  
  14.