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

#include "config.h"

typedef struct MqttPacket MqttPacket;
typedef struct Stream Stream;

int MqttPacketDeserialize(MqttPacket **packet, Stream *stream);

#endif