blob: 70c7c6009f3dd10925d16f70cedcf45fa54a49e5 (
plain)
1
2
3
4
5
6
7
8
|
#ifndef __IPLINK_H
#define __IPLINK_H
typedef int (*iplink_list_func)(int index, int flags, const char *name, void *arg);
int iplink_list(iplink_list_func func, void *arg);
#endif
|