Sha256: 89b022cf47e42952cfd224f9b56fd0d4856a10592ac0ebffd082ddca6e96da4c
Contents?: true
Size: 781 Bytes
Versions: 27
Compression:
Stored size: 781 Bytes
Contents
/* * Summary: Internal functions used by the library. Not for public use! * Copy: See Copyright for the status of this software. * * Author: Trond Norbye */ #ifndef LIBMEMCACHED_MEMCACHED_INTERNAL_H #define LIBMEMCACHED_MEMCACHED_INTERNAL_H #if defined(BUILDING_LIBMEMCACHED) #ifdef __cplusplus extern "C" { #endif LIBMEMCACHED_LOCAL void libmemcached_free(memcached_st *ptr, void *mem); LIBMEMCACHED_LOCAL void *libmemcached_malloc(memcached_st *ptr, const size_t size); LIBMEMCACHED_LOCAL void *libmemcached_realloc(memcached_st *ptr, void *mem, const size_t size); LIBMEMCACHED_LOCAL void *libmemcached_calloc(memcached_st *ptr, size_t nelem, size_t size); #ifdef __cplusplus } #endif #endif /* BUILDING_LIBMEMCACHED */ #endif /* LIBMEMCACHED_MEMCACHED_INTERNAL_H */
Version data entries
27 entries across 27 versions & 4 rubygems