Provided by: libwget0_0.0.20170806-1_amd64
NAME
libwget-mem
SYNOPSIS
Functions void * wget_memdup (const void *m, size_t n) char * wget_strdup (const char *s) char * wget_strmemdup (const void *m, size_t n) void wget_strmemcpy (char *s, size_t ssize, const void *m, size_t n)
Detailed Description
This is a collections of short memory function not available in standard libraries.
Function Documentation
void* wget_memdup (const void * m, size_t n) Parameters: m Memory to clone n Length of memory Returns: Cloned memory Clone's the memory region m with length n. Returns NULL if m is NULL. You should free() the returned pointer when not needed any more. char* wget_strdup (const char * s) Parameters: s String to clone Returns: Cloned string Clone's the string s like strdup() does. Returns NULL if s is NULL. You should free() the returned string when not needed any more. char* wget_strmemdup (const void * m, size_t n) Parameters: m Memory to convert into string n Length of memory Returns: Created string Convert the given memory region m with length n into a C string. Returns NULL if m is NULL. You should free() the returned string when not needed any more. void wget_strmemcpy (char * s, size_t ssize, const void * m, size_t n) Parameters: s Buffer to hold the C string output ssize Size of the output buffer m Memory to read from n Length of memory Convert the given memory region m with length n into a C string at s. A max. of ssize - 1 is copied into s.
Author
Generated automatically by Doxygen for wget2 from the source code.