C语言杂谈——静态函数

静态函数:不让其他文件来调用的函数称为静态函数。

static    类型    函数名称

{

    //函数体…

}

原文地址:https://www.cnblogs.com/hanzhaoxin/p/2779910.html