docs(codes/c): add function description

pull/289/head
Gonglja 2 years ago
parent dceae63f38
commit 81cdf1d530

@ -16,7 +16,7 @@ struct mylist {
};
typedef struct mylist MyList;
/* 声明函数 */
/* 前置声明 */
void extendCapacity(MyList* l);
/* 构造函数 */

@ -13,7 +13,7 @@ struct LinkedListStack {
};
typedef struct LinkedListStack LinkedListStack;
/* 构造函数 */
void constructor(LinkedListStack* stk) {
stk->stackTop = NULL;
stk->stkSize = 0;

Loading…
Cancel
Save