1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-01 04:20:39 +02:00

Update c-cn.html.markdown (#4740)

chore: typedefs to typedef
This commit is contained in:
erhu
2023-08-25 11:37:22 +08:00
committed by GitHub
parent 0c890d7575
commit f472504d58

View File

@@ -474,7 +474,7 @@ void testFunc() {
// 用户自定义类型和结构
///////////////////////////////////////
// Typedefs可以创建类型别名
// typedef 可以创建类型别名
typedef int my_type;
my_type my_type_var = 0;