mirror of
https://github.com/Maschell/libutils.git
synced 2024-11-10 23:15:04 +01:00
15 lines
168 B
C
15 lines
168 B
C
#ifndef __NET_H_
|
|
#define __NET_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int recvwait(int sock, unsigned char *buffer, int len);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|