chore: add

This commit is contained in:
FallenYing
2023-09-25 19:46:20 +08:00
parent 08c9571b1e
commit 7148b804dc
10 changed files with 20 additions and 21 deletions

View File

@@ -32,7 +32,7 @@
如果你可以在不参考下面内容的情况下就写出基本内容会有很大收获的
:::
## **parsexec.c**
## parsexec.c
```c
#include <stdbool.h>
@@ -91,7 +91,7 @@ bool parseAndExecute(char *input)
新命令由以下模块实现。
## **inventory.h**
## inventory.h
```c
extern void executeGet(const char *noun);
@@ -101,7 +101,7 @@ extern void executeGive(const char *noun);
extern void executeInventory(void);
```
## **inventory.c**
## inventory.c
```c
#include <stdio.h>