mirror of
https://github.com/JannisHeydemann/BoredOS.git
synced 2026-05-30 02:16:58 +00:00
10 lines
167 B
C
10 lines
167 B
C
#ifndef E1000_NETIF_H
|
|
#define E1000_NETIF_H
|
|
|
|
#include "lwip/netif.h"
|
|
|
|
err_t e1000_netif_init(struct netif *netif);
|
|
void e1000_netif_poll(struct netif *netif);
|
|
|
|
#endif
|