GETPASS.3
上传用户:jnzhq888
上传日期:2007-01-18
资源大小:51694k
文件大小:1k
源码类别:

操作系统开发

开发平台:

WINDOWS

  1. GETPASS(3)                Minix Programmer's Manual                 GETPASS(3)
  2. NAME
  3.      getpass - read a password
  4. SYNOPSIS
  5.      #include <minix/minlib.h>
  6.      char *getpass(const char *prompt)
  7. DESCRIPTION
  8.      Getpass reads a password from the file /dev/tty, or  if  that  cannot  be
  9.      opened, from the standard input, after prompting with the null-terminated
  10.      string prompt and disabling echoing.  A pointer is returned  to  a  null-
  11.      terminated string of at most 32 characters, excluding the null.
  12. SEE ALSO
  13.      crypt(3).
  14. BUGS
  15.      The return value points to static data whose content  is  overwritten  by
  16.      each call.
  17.                                 May 15, 1985                                 1