diff options
author | jvech <jmvalenciae@unal.edu.co> | 2023-08-16 08:31:33 -0500 |
---|---|---|
committer | jvech <jmvalenciae@unal.edu.co> | 2023-08-16 08:31:33 -0500 |
commit | ba9a7343ad22d507cfaed6b7bb8618a99c2f2976 (patch) | |
tree | 14f5be8b79e89ad3e4aa0a48773a9bf078eb2e0f /src/util.h | |
parent | c888c09e8ecb166efa01929c0f27d5085929a2b2 (diff) |
add: Cli defined
Diffstat (limited to 'src/util.h')
-rw-r--r-- | src/util.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/util.h b/src/util.h new file mode 100644 index 0000000..4068691 --- /dev/null +++ b/src/util.h @@ -0,0 +1,6 @@ +#include <stdarg.h> +#include <stdio.h> +#include <stdlib.h> + +void die(const char *fmt, ...); +void *ecalloc(size_t nmemb, size_t size); |