linux内核链表(亲测可用)
Linux内核链表
头文件:
#ifndef _LIST_H
#define _LIST_H
//#include<stdio.h>
//#include<stdlib.h>
struct list_head {
struct list_head *next, *prev;
};
#define LIST_HEAD_INIT(name) { &(name), &(name) }
#define LIST_HEAD(name)
str...
原创
2021-01-27 18:24:07 ·
237 阅读 ·
0 评论