ns_calloc
Overview
Allocate a zero-filled block of memory
Syntax
void *ns_calloc(
size_t num,
size_t size
);
Description
The ns_calloc function allocates a block of zero-filled memory large enough to hold the given number of elements of the given size. This function replaces the system calloc function.
Top of Page
Copyright © 1996 America Online, Inc.