kernel数据结构list 实例-CSDN博客

网站介绍:#include<stdio.h>#include<stdlib.h>#include<string.h>#include"list.h"struct person{ char name[20]; int age; struct list_head list; // 放在结构体哪都一样 int sex;};int ...