isdntab.h
来自「一个很好用的linux 下的流量监控软件」· C头文件 代码 · 共 16 行
H
16 行
struct isdntabent { char ifname[10]; unsigned int encap; struct isdntabent *next_entry;};struct isdntab { struct isdntabent *head; struct isdntabent *tail;};void add_isdn_entry(struct isdntab *list, char *ifname, int isdn_fd);struct isdntabent *isdn_table_lookup(struct isdntab *list, char *ifname, int isdn_fd);void destroy_isdn_table(struct isdntab *list);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?