api.md 620 B

Hello API

打招呼

注意:对于函数介绍,必须遵循下面的格式

int hello_func(void)

hello_func 的函数描述

参数 描述
无参数
返回 描述
0 正确执行
-1 失败

示例(可选)

#include <hello.h>

int func()
{
    hello_func();
    
    return 0;
}