xref: /aosp_15_r20/external/nanopb-c/examples/network_server/common.h (revision c8d645cafcee3f91213d30caa0fe303887010b9b)
1 #ifndef _PB_EXAMPLE_COMMON_H_
2 #define _PB_EXAMPLE_COMMON_H_
3 
4 #include <pb.h>
5 
6 pb_ostream_t pb_ostream_from_socket(int fd);
7 pb_istream_t pb_istream_from_socket(int fd);
8 
9 #endif