1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* ... */
#ifndef __ETHERNETIF_H__
#define __ETHERNETIF_H__
#include "lwip/err.h"
#include "lwip/netif.h"
err_t ethernetif_init(struct netif *netif);
void ethernetif_input(struct netif *netif);
void ethernet_link_check_state(struct netif *netif);Exported functions
/* ... */#endif