9 lines
124 B
C
9 lines
124 B
C
|
#ifndef NETUTIL_H
|
||
|
#define NETUTIL_H
|
||
|
|
||
|
#include <SDL2/SDL_net.h>
|
||
|
|
||
|
TCPsocket blocking_accept(TCPsocket server_socket);
|
||
|
|
||
|
#endif
|