X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;ds=inline;f=include%2Fyaz%2Fnmem.h;fp=include%2Fyaz%2Fnmem.h;h=2b86006277b4df861e9cdc66a2230ad28d8f41db;hb=4e50d9461c89fb538b1826f9cecf4475deaeed3b;hp=fb7910c7d51361e2e8967e01cd4a0105605c00a3;hpb=b0f1c1366ae428139ead8584c8c7e423aad7e0b3;p=yaz-moved-to-github.git diff --git a/include/yaz/nmem.h b/include/yaz/nmem.h index fb7910c..2b86006 100644 --- a/include/yaz/nmem.h +++ b/include/yaz/nmem.h @@ -78,7 +78,7 @@ YAZ_EXPORT void nmem_reset(NMEM n); /** \brief returns size in bytes of memory for NMEM handle \returns number of bytes */ -YAZ_EXPORT int nmem_total(NMEM n); +YAZ_EXPORT size_t nmem_total(NMEM n); /** \brief allocates string on NMEM handle (similar strdup) \param mem HNEM handle @@ -156,7 +156,7 @@ YAZ_EXPORT void nmem_destroy(NMEM n); \param size number of bytes to be allocated \returns pointer to allocated memory */ -YAZ_EXPORT void *nmem_malloc(NMEM n, int size); +YAZ_EXPORT void *nmem_malloc(NMEM n, size_t size); YAZ_END_CDECL