This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Functions | |
| void * | mem_alloc (int n) |
| allocate memory | |
| void * | mem_ccpy (void *s1, const void *s2, int c, int n) |
| copy memory block until character is found | |
| void * | mem_chr (const void *s, int c, int n) |
| find character in memory block | |
| int | mem_cmp (const void *s1, const void *s2, int n) |
| compare two memory regions | |
| void * | mem_cpy (void *s1, const void *s2, int n) |
| copy memory block | |
| void * | mem_dup (const void *s, int n) |
| duplicate a memory block | |
| void | mem_free (void *s) |
| free memory | |
| void | mem_freeall (void) |
| free all memory | |
| int | mem_idx (const void *s, int c, int n) |
| find character in memory block | |
| void * | mem_realloc (void *s, int n) |
| reallocate memory | |
| void * | mem_set (void *s, int c, int n) |
| fill memory block with character | |
1.5.2