1 /*
2    This program is free software; you can redistribute it and/or
3    modify it under the terms of the GNU General Public License as
4    published by the Free Software Foundation; either version 2, or (at
5    your option) any later version.
6 
7    This program is distributed in the hope that it will be useful, but
8    WITHOUT ANY WARRANTY; without even the implied warranty of
9    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
10    General Public License for more details.
11 
12    Copyright (c) Alexey Mahotkin <alexm@hsys.msk.ru> 2002
13 
14    PAM support for checkpassword-pam
15 
16 */
17 
18 #ifndef PAM_SUPPORT_H_
19 #define PAM_SUPPORT_H_ 1
20 
21 int authenticate_using_pam (const char* service_name,
22 			    const char* username,
23 			    const char* password);
24 
25 #endif /* PAM_SUPPORT_H_ */
26 
27