ZotBins Core
Loading...
Searching...
No Matches
Client.hpp
1#ifndef CLIENT_HPP
2#define CLIENT_HPP
3
4#include <stddef.h>
5
6namespace Client
7{
8 void clientStart(void);
9 void clientPublish(const void *message, size_t len);
10 // ONLY pass null terminated strings to this function! It uses strlen!
11 void clientPublishStr(const char *message);
12}
13
14#endif