aboutsummaryrefslogtreecommitdiff
path: root/src/serialize.h
blob: ac8d38fccc8406392b4bc776982f1cbfeadce54c (plain)
1
2
3
4
5
6
7
8
9
#ifndef SERIALIZE_H
#define SERIALIZE_H

typedef struct MqttPacket MqttPacket;
typedef struct Stream Stream;

int MqttPacketSerialize(const MqttPacket *packet, Stream *stream);

#endif