25void *
err(
const char *str,
void *retval);
int abs(int n)
Get absolute value of n.
void ** arr_free(void **arr)
Free each element in a null-terminated array, and then the array itself.
int arr_len(void **arr)
Count number of elements in a null-terminated array.
void * err(const char *str, void *retval)
Wrapper around perror() that always returns retval.