aboutsummaryrefslogtreecommitdiff
path: root/elegoo/pb/pb_stream.h
blob: 00be77c614da843d71d06e11b87d39d35651614c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef PB_STREAM
#define PB_STREAM

#include <Stream.h>
#include <Print.h>
#include "pb_encode.h"
#include "pb_decode.h"

void pb_istream_from_stream(Stream &stream, pb_istream_t &istream);
void pb_ostream_from_stream(Print &stream, pb_ostream_t &ostream);

#endif