
LINUX基本函数
文章平均质量分 68
yao_fairy
这个作者很懒,什么都没留下…
展开
-
exec函数
1、exec函数族 头文件: #include int execl (const char *pathname, const char*arg0,……) int execv (const char *pathname, char * const * argv[]) int execle (const char *pathname, const char *arg0,……,char *原创 2016-11-25 18:04:04 · 430 阅读 · 0 评论 -
Linux中list
初次看到Linux下的list,粗看了一下list的定义,以为是双向链表,但是其与数据结构中双向链表不同,并没有链表的定义中却没有具体的数据类型。 1、Linux中list定义 linux中list的定义struct list_head { struct list_head *next, *prev; } 数据结构中双向链表的定义 struct node { str原创 2017-01-16 10:01:01 · 2441 阅读 · 0 评论