⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 commit.h

📁 非常热门的linux管理软件git的雏形 小而全
💻 H
字号:
#ifndef COMMIT_H#define COMMIT_H#include "object.h"#include "tree.h"struct commit_list {	struct commit *item;	struct commit_list *next;};struct commit {	struct object object;	unsigned long date;	struct commit_list *parents;	struct tree *tree;};extern const char *commit_type;struct commit *lookup_commit(unsigned char *sha1);int parse_commit(struct commit *item);void free_commit_list(struct commit_list *list);#endif /* COMMIT_H */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -