version 1.70, 2007/08/17 10:42:52
|
version 1.78, 2010/04/13 20:17:49
|
Line 1
|
Line 1
|
/* $OpenLDAP: pkg/ldap/include/lutil.h,v 1.69 2007/02/11 12:42:29 hyc Exp $ */ |
/* $OpenLDAP: pkg/ldap/include/lutil.h,v 1.77 2009/11/15 17:26:53 ando 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-2007 The OpenLDAP Foundation. |
* Copyright 1998-2010 The OpenLDAP Foundation. |
* All rights reserved. |
* All rights reserved. |
* |
* |
* Redistribution and use in source and binary forms, with or without |
* Redistribution and use in source and binary forms, with or without |
Line 177 LDAP_LUTIL_F( int )
|
Line 177 LDAP_LUTIL_F( int )
|
lutil_tm2time LDAP_P(( |
lutil_tm2time LDAP_P(( |
struct lutil_tm *, struct lutil_timet * )); |
struct lutil_tm *, struct lutil_timet * )); |
|
|
/* Get current time as a structured time */ |
|
LDAP_LUTIL_F( void ) |
|
lutil_gettime LDAP_P(( struct lutil_tm * )); |
|
|
|
#ifdef _WIN32 |
#ifdef _WIN32 |
LDAP_LUTIL_F( void ) |
LDAP_LUTIL_F( void ) |
lutil_slashpath LDAP_P(( char* path )); |
lutil_slashpath LDAP_P(( char* path )); |
Line 195 lutil_strcopy LDAP_P(( char *dst, const
|
Line 191 lutil_strcopy LDAP_P(( char *dst, const
|
LDAP_LUTIL_F( char* ) |
LDAP_LUTIL_F( char* ) |
lutil_strncopy LDAP_P(( char *dst, const char *src, size_t n )); |
lutil_strncopy LDAP_P(( char *dst, const char *src, size_t n )); |
|
|
|
LDAP_LUTIL_F( char* ) |
|
lutil_memcopy LDAP_P(( char *dst, const char *src, size_t n )); |
|
|
|
#define lutil_strbvcopy(a, bv) lutil_memcopy((a),(bv)->bv_val,(bv)->bv_len) |
|
|
struct tm; |
struct tm; |
|
|
/* use this macro to statically allocate buffer for lutil_gentime */ |
/* use this macro to statically allocate buffer for lutil_gentime */ |
Line 226 lutil_uuidstr_from_normalized(
|
Line 227 lutil_uuidstr_from_normalized(
|
char *buf, |
char *buf, |
size_t buflen ); |
size_t buflen ); |
|
|
/* csn.c */ |
|
/* use this macro to allocate buffer for lutil_csnstr */ |
|
#define LDAP_LUTIL_CSNSTR_BUFSIZE 64 |
|
LDAP_LUTIL_F( size_t ) |
|
lutil_csnstr( char *buf, size_t len, unsigned int replica, unsigned int mod ); |
|
|
|
/* |
/* |
* Sometimes not all declarations in a header file are needed. |
* Sometimes not all declarations in a header file are needed. |
* An indicator to this is whether or not the symbol's type has |
* An indicator to this is whether or not the symbol's type has |
Line 304 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) |
|
|
|
LDAP_LUTIL_F (int) |
|
lutil_str2bin( struct berval *in, struct berval *out, void *ctx ); |
|
|
/* Parse and unparse time intervals */ |
/* Parse and unparse time intervals */ |
LDAP_LUTIL_F (int) |
LDAP_LUTIL_F (int) |
lutil_parse_time( const char *in, unsigned long *tp ); |
lutil_parse_time( const char *in, unsigned long *tp ); |