aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXiao Pan <xyz@flylightning.xyz>2025-05-15 16:18:48 -0700
committerXiao Pan <xyz@flylightning.xyz>2025-05-15 16:18:48 -0700
commitddcdaa099a9299886051c2cc7a80fdabbf5581ef (patch)
tree9a5ab03bed6d62182b858b9246fd7e9506a296db
parent6a4bdce293cc6c6cdde28c909058870f9e63598a (diff)
edit comments
-rw-r--r--list.c2
-rw-r--r--list.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/list.c b/list.c
index 5d8ebde..c204bce 100644
--- a/list.c
+++ b/list.c
@@ -1,5 +1,5 @@
// references:
-// "C Primer Plus" Chapter17 practice problem 2
+// edited from "C Primer Plus" Chapter17 practice problem 2
//list.c--支持列表操作的函数
#include <stdio.h>
diff --git a/list.h b/list.h
index 712a6fe..d5aef17 100644
--- a/list.h
+++ b/list.h
@@ -1,5 +1,5 @@
// references:
-// "C Primer Plus" Chapter17 practice problem 2
+// edited from "C Primer Plus" Chapter17 practice problem 2
/*list.h--简单列表类型的头文件*/
#ifndef LIST_H_