2000-11-06 17:53:50 -05:00
|
|
|
#ifndef __GETPASS_H
|
|
|
|
#define __GETPASS_H
|
2002-09-03 07:52:59 -04:00
|
|
|
/***************************************************************************
|
2001-01-08 17:30:30 -05:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2003-01-16 16:08:12 -05:00
|
|
|
* Copyright (C) 1998 - 2003, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2001-01-08 17:30:30 -05:00
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
|
|
|
* are also available at http://curl.haxx.se/docs/copyright.html.
|
|
|
|
*
|
2001-01-08 17:30:30 -05:00
|
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
* copies of the Software, and permit persons to whom the Software is
|
2002-09-03 07:52:59 -04:00
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
2001-01-08 17:30:30 -05:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
* $Id$
|
2002-09-03 07:52:59 -04:00
|
|
|
***************************************************************************/
|
2001-01-08 17:30:30 -05:00
|
|
|
#ifndef HAVE_GETPASS_R
|
|
|
|
/* If there's a system-provided function named like this, we trust it is
|
|
|
|
also found in one of the standard headers. */
|
|
|
|
|
2000-11-06 17:53:50 -05:00
|
|
|
/*
|
2000-11-10 04:18:25 -05:00
|
|
|
* Returning NULL will abort the continued operation!
|
2000-11-06 17:53:50 -05:00
|
|
|
*/
|
2001-08-14 04:27:07 -04:00
|
|
|
char* getpass_r(const char *prompt, char* buffer, size_t buflen );
|
2001-01-08 17:30:30 -05:00
|
|
|
#endif
|
2000-11-06 17:53:50 -05:00
|
|
|
|
|
|
|
#endif
|