summaryrefslogtreecommitdiff
path: root/types.h
diff options
context:
space:
mode:
authorTest_User <hax@andrewyu.org>2023-05-03 22:57:53 -0400
committerTest_User <hax@andrewyu.org>2023-05-03 22:57:53 -0400
commite4b5445b3ca844e568a84abbf931a026a6ca6226 (patch)
tree9d9d615406c5a91036ebcd5b23bd8af30d3e8f3d /types.h
parentec8b1682e86535333c34966f6aafee349e609641 (diff)
downloadcoupserv-e4b5445b3ca844e568a84abbf931a026a6ca6226.tar.gz
coupserv-e4b5445b3ca844e568a84abbf931a026a6ca6226.zip
C HaxServ
Diffstat (limited to 'types.h')
-rw-r--r--types.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/types.h b/types.h
new file mode 100644
index 0000000..0a7e592
--- /dev/null
+++ b/types.h
@@ -0,0 +1,12 @@
+#pragma once
+
+#include <stddef.h>
+#include <unistd.h>
+
+struct string {
+ char *data;
+ size_t len;
+};
+
+#define STRING(x) (struct string){x, sizeof(x)-1}
+#define WRITES(x, y) write(x, y.data, y.len);