aboutsummaryrefslogtreecommitdiff
path: root/server/helpers.c
diff options
context:
space:
mode:
authorPreston Pan <ret2pop@gmail.com>2024-12-27 20:05:06 -0800
committerPreston Pan <ret2pop@gmail.com>2024-12-27 20:05:06 -0800
commit63f11aaec8d21844a07fd27003a992c102a3a297 (patch)
tree6240a2c8561642d0c1d0b95148d6c868c7855a4a /server/helpers.c
parentfd14f6fbf8206589d2a0ad8f0793845cb8faf1d7 (diff)
make directory structure for client
Diffstat (limited to 'server/helpers.c')
-rw-r--r--server/helpers.c34
1 files changed, 34 insertions, 0 deletions
diff --git a/server/helpers.c b/server/helpers.c
new file mode 100644
index 0000000..8485dc6
--- /dev/null
+++ b/server/helpers.c
@@ -0,0 +1,34 @@
+#include <helpers.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+
+void die_lz(int code, const char *msg) {
+ if (code < 0) {
+ die(msg);
+ }
+}
+
+void die(const char *msg) {
+ fprintf(stderr, "panic: ");
+ perror(msg);
+ exit(EXIT_FAILURE);
+}
+
+void *safe_calloc(unsigned int i, size_t size) {
+ void *x = calloc(i, size);
+ if (x == NULL) {
+ die("abort: calloc()");
+ }
+ return x;
+}
+
+void *safe_realloc(void *x, size_t size) {
+ void *p = realloc(x, size);
+ if (x == NULL) {
+ die("abort: realloc()");
+ }
+ return p;
+}
+
+void alloc_zero(void *ptr, size_t size) { memset(ptr, 0, size); }