[Main]
Name=tifiles_calloc
Type=Function
Header=file_int.h
Definition=void* tifiles_calloc (size_t nmemb, size_t size);

[Parameters]
nmemb : the number of elements
size : the size of each elements

[Summary]
Acts like the 'calloc' function.

[Explanation]
Due to DLL partition under Windows, any memory freed by the library must have been allocated in the library else a memory violation is raised.
To circumvent this problem, a platform independant 'calloc' function has been created.

[See also]
tifiles_malloc, tifiles_free, tifiles_realloc