version 1.78, 2010/04/13 20:17:49
|
version 1.79, 2010/08/12 21:32:39
|
Line 1
|
Line 1
|
/* $OpenLDAP: pkg/ldap/include/lutil.h,v 1.77 2009/11/15 17:26:53 ando Exp $ */ |
/* $OpenLDAP: pkg/ldap/include/lutil.h,v 1.78 2010/04/13 20:17:49 kurt Exp $ */ |
/* This work is part of OpenLDAP Software <http://www.openldap.org/>. |
/* This work is part of OpenLDAP Software <http://www.openldap.org/>. |
* |
* |
* Copyright 1998-2010 The OpenLDAP Foundation. |
* Copyright 1998-2010 The OpenLDAP Foundation. |
Line 299 lutil_atoulx( unsigned long *v, const ch
|
Line 299 lutil_atoulx( unsigned long *v, const ch
|
#define lutil_atol(v, s) lutil_atolx((v), (s), 10) |
#define lutil_atol(v, s) lutil_atolx((v), (s), 10) |
#define lutil_atoul(v, s) lutil_atoulx((v), (s), 10) |
#define lutil_atoul(v, s) lutil_atoulx((v), (s), 10) |
|
|
|
#ifdef HAVE_LONG_LONG |
|
#if defined(HAVE_STRTOLL) || defined(HAVE_STRTOQ) |
|
LDAP_LUTIL_F (int) |
|
lutil_atollx( long long *v, const char *s, int x ); |
|
#define lutil_atoll(v, s) lutil_atollx((v), (s), 10) |
|
#endif /* HAVE_STRTOLL || HAVE_STRTOQ */ |
|
|
|
#if defined(HAVE_STRTOULL) || defined(HAVE_STRTOUQ) |
|
LDAP_LUTIL_F (int) |
|
lutil_atoullx( unsigned long long *v, const char *s, int x ); |
|
#define lutil_atoull(v, s) lutil_atoullx((v), (s), 10) |
|
#endif /* HAVE_STRTOULL || HAVE_STRTOUQ */ |
|
#endif /* HAVE_LONG_LONG */ |
|
|
LDAP_LUTIL_F (int) |
LDAP_LUTIL_F (int) |
lutil_str2bin( struct berval *in, struct berval *out, void *ctx ); |
lutil_str2bin( struct berval *in, struct berval *out, void *ctx ); |
|
|