static function
2015-08-15 本文已影响0人
蜀中马谡
static keyword makes a function could only be seen in its own translation unit(file).
static int myfunc();
static int myfunc(){ ... }
static keyword makes a function could only be seen in its own translation unit(file).
static int myfunc();
static int myfunc(){ ... }