cdfutils.h File Reference

CDF_MALLOC

CDF_CALLOC

CDF_REALLOC

CDF_FREE

CDF_malloc ( const CDF_SIZET )

IMPORT_C CDF_PTRCDF_malloc(const CDF_SIZETnSize)

Same as the standard library malloc

CDF_calloc ( const CDF_SIZET, const CDF_SIZET )

IMPORT_C CDF_PTRCDF_calloc(const CDF_SIZETnMemb,
const CDF_SIZETnSize
)

Same as the standard library calloc

CDF_realloc ( const CDF_PTR, const CDF_SIZET )

IMPORT_C CDF_PTRCDF_realloc(const CDF_PTRpSrc,
const CDF_SIZETnSize
)

Same as the standard library realloc

CDF_free ( CDF_PTR * )

IMPORT_C voidCDF_free(CDF_PTR *pMem)

Same as the standard library free

CDF_memcpy ( CDF_PTR, const CDF_PTR, const CDF_SIZET )

IMPORT_C CDF_PTRCDF_memcpy(CDF_PTRpDst,
const CDF_PTRpSrc,
const CDF_SIZETnSize
)

Same as the standard library memcpy

CDF_memset ( CDF_PTR, const CDF_S32, const CDF_SIZET )

IMPORT_C CDF_PTRCDF_memset(CDF_PTRpDst,
const CDF_S32nC,
const CDF_SIZETnSize
)

Same as the standard library memset

CDF_memcmp ( const CDF_PTR, const CDF_PTR, const CDF_SIZET )

IMPORT_C CDF_S32CDF_memcmp(const CDF_PTRpSrc1,
const CDF_PTRpSrc2,
const CDF_SIZETnSize
)

Same as the standard library memcmp

CDF_memmove ( CDF_PTR, const CDF_PTR, const CDF_SIZET )

IMPORT_C CDF_PTRCDF_memmove(CDF_PTRpDst,
const CDF_PTRpSrc,
const CDF_SIZETnSize
)

Same as the standard library memmove

CDF_strcpy ( CDF_STRING, const CDF_STRING )

IMPORT_C CDF_STRINGCDF_strcpy(CDF_STRINGpDst,
const CDF_STRINGpSrc
)

Same as the standard library strcpy

CDF_strcmp ( const CDF_STRING, const CDF_STRING )

IMPORT_C CDF_S32CDF_strcmp(const CDF_STRINGpSrc1,
const CDF_STRINGpSrc2
)

Same as the standard library strcmp

CDF_strncmp ( const CDF_STRING, const CDF_STRING, const CDF_SIZET )

IMPORT_C CDF_S32CDF_strncmp(const CDF_STRINGpSrc1,
const CDF_STRINGpSrc2,
const CDF_SIZETnSize
)

Same as the standard library strncmp

CDF_strlen ( const CDF_STRING )

IMPORT_C CDF_SIZETCDF_strlen(const CDF_STRINGpSrc)

Same as the standard library strlen

CDF_strcat ( CDF_STRING, const CDF_STRING )

IMPORT_C CDF_STRINGCDF_strcat(CDF_STRINGpDst,
const CDF_STRINGpSrc
)

Same as the standard library strcat

CDF_atoi ( const CDF_STRING )

IMPORT_C CDF_S32CDF_atoi(const CDF_STRINGpSrc)

Same as the standard library atoi

CDF_itoa ( const CDF_S32, CDF_STRING )

IMPORT_C voidCDF_itoa(const CDF_S32nInput,
CDF_STRINGsOutput
)

Same as the standard library itoa

CDF_htoi ( const CDF_STRING )

IMPORT_C CDF_S32CDF_htoi(const CDF_STRINGpSrc)

Same as the standard library htoi

CDF_sprintf ( CDF_STRING, const CDF_STRING, ... )

IMPORT_C CDF_S32CDF_sprintf(CDF_STRINGsBuffer,
const CDF_STRINGsFormat,
...
)

Same as standard library sprintf