first commit

This commit is contained in:
dzruyk
2025-09-27 03:54:38 +03:00
commit 20c590f860
6 changed files with 241 additions and 0 deletions

7
util.h Normal file
View File

@@ -0,0 +1,7 @@
#pragma once
void *xmalloc(size_t sz);
void* xrealloc(void *ptr, size_t size);
void xerror(int rc, char *fmt, ...);