[
next
] [
prev
] [
prev-tail
] [
tail
] [
up
]
4.87
SDDS_Realloc
name:
SDDS_Realloc
description:
Reallocates a block of memory, guaranteeing a minimum allocation of four bytes.
synopsis:
#include ”SDDS.h”
void *SDDS_Realloc(void *old_ptr, size_t new_size);
arguments:
old
_ptr:
Existing memory block to resize; may be NULL.
new
_size:
Requested size in bytes.
return value:
Pointer to the reallocated memory block, or NULL on failure.
see also:
SDDS
_CopyString
[
next
] [
prev
] [
prev-tail
] [
front
] [
up
]