You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
257 B
C
16 lines
257 B
C
2 years ago
|
#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);
|
||
|
|