pebble/third_party/nanopb/examples/network_server/common.h
2025-01-27 11:38:16 -08:00

9 lines
No EOL
175 B
C

#ifndef _PB_EXAMPLE_COMMON_H_
#define _PB_EXAMPLE_COMMON_H_
#include <pb.h>
pb_ostream_t pb_ostream_from_socket(int fd);
pb_istream_t pb_istream_from_socket(int fd);
#endif