Move messages to their own headers

This commit is contained in:
2023-02-02 01:14:29 -06:00
parent dc1d5f77af
commit 8170b3aa90
12 changed files with 343 additions and 334 deletions
+15
View File
@@ -0,0 +1,15 @@
#pragma once
#include <stdlib.h>
#include <stddef.h>
#include <inttypes.h>
#include <stdbool.h>
// Public stuff
struct Message;
struct Client;
typedef struct Client* Client;
typedef struct Message* Message;
Client client_new(void* buffer, size_t size);