1
0
forked from 131/lab6_list

init commit

This commit is contained in:
dzruyk
2022-04-23 01:35:06 +03:00
commit 6d1c299a16
18 changed files with 4294 additions and 0 deletions

9
util.h Normal file
View File

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