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

#include "config.h"

typedef struct MqttPacket MqttPacket;
typedef struct Stream Stream;

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

#endif