1 Star 8 Fork 12

觉皇/SoftTimer

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
list.h 390 Bytes
一键复制 编辑 原始数据 按行查看 历史
觉皇 提交于 2023-03-24 09:17 . 添加单链表文件
/*
* list.h
*
* Created on: 2023324
* Author: hello
*/
#ifndef LIST_H_
#define LIST_H_
#include <stdint.h>
typedef struct list
{
struct list* next;
}list_t;
void list_add_head(list_t** l, list_t* entry);
void list_add_tail(list_t** l, list_t* entry);
void list_del(list_t** l, list_t* entry);
void list_init(list_t** l);
#endif /* LIST_H_ */
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/jhembed/SoftTimer.git
git@gitee.com:jhembed/SoftTimer.git
jhembed
SoftTimer
SoftTimer
main

搜索帮助