blob: 07c45b0941ee66e2d3da2df854117c2091bbdef4 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef PWDB_H
#define PWDB_H
struct ppp_t;
int pwdb_check(struct ppp_t*,const char *username,const char *password);
char *pwdb_get_passwd(struct ppp_t*, const char *username);
#endif
|