15 lines
185 B
C
15 lines
185 B
C
#ifndef TCP_SEND_H
|
|
#define TCP_SEND_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void tcp_send(void); // Returns the incremented value
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // TCP_SEND_H
|