mirror of
https://github.com/BoredDevNL/BoredOS.git
synced 2026-05-15 18:58:40 +00:00
9 lines
167 B
C
9 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
|