toaruos/apps/ifconfig.c

12 lines
277 B
C
Raw Normal View History

2021-05-31 04:47:02 +03:00
/**
* @file apps/ifconfig.c
* @brief Network interface configuration tool.
*
* Manipulates and enumerates network interfaces.
*/
#include <stdio.h>
int main(int argc, char * argv[]) {
/* I have no idea how this works on Linux or BSD, but based on some manpages... */
}