13 lines
170 B
C
13 lines
170 B
C
#ifndef __TCP_SERVER_ECHO_H__
|
|
#define __TCP_SERVER_ECHO_H__
|
|
|
|
#include "stdint.h"
|
|
|
|
|
|
void tcp_server_echo_task_creat(uint32_t port);
|
|
|
|
|
|
|
|
#endif /* __TCP_SERVER_ECHO_H__ */
|
|
|