1998-09-03 05:31:35 +08:00
|
|
|
#ifndef _LUTIL_H
|
|
|
|
#define _LUTIL_H 1
|
|
|
|
|
1998-10-25 09:41:42 +08:00
|
|
|
#include <ldap_cdefs.h>
|
1998-09-03 05:31:35 +08:00
|
|
|
/*
|
|
|
|
* Include file for LDAP utility routine
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* ISC Base64 Routines */
|
1998-10-25 09:41:42 +08:00
|
|
|
|
|
|
|
LDAP_BEGIN_DECL
|
|
|
|
|
|
|
|
LDAP_F int b64_ntop LDAP_P((u_char const *, size_t, char *, size_t));
|
|
|
|
LDAP_F int b64_pton LDAP_P((char const *, u_char *, size_t));
|
1998-11-05 09:22:42 +08:00
|
|
|
LDAP_F void lutil_detach LDAP_P((int debug, int do_close));
|
1998-11-07 06:04:14 +08:00
|
|
|
LDAP_F int lutil_passwd LDAP_P((const char *cred, const char *passwd));
|
1998-10-25 09:41:42 +08:00
|
|
|
LDAP_END_DECL
|
1998-09-03 05:31:35 +08:00
|
|
|
|
|
|
|
#endif /* _LUTIL_H */
|