UP 按键扫描支持

This commit is contained in:
JiXieShi
2024-06-22 11:08:31 +08:00
parent 99dcb14b60
commit 2d867be49a
13 changed files with 454 additions and 40 deletions

View File

@@ -13,8 +13,8 @@ typedef struct List_Node_t { //节点结构
} List_Node_t;
typedef struct { //链表结构
struct List_Node_t *head;
struct List_Node_t *tail;
List_Node_t *head;
List_Node_t *tail;
long len;
} List_t;