function declared static but never defined

前端 未结 2 1322
忘掉有多难
忘掉有多难 2021-02-01 14:19

I have a header file suppose abc.h, where i have function declaration as:

static int function1();

I have included this header file in abc.c and

相关标签:
2条回答
  • 2021-02-01 14:20

    Good practice: Declare static functions in the source file they are defined in (please also provide prototype), since that's the only file they are visible in.

    This way, the function is only visible to that file, such visibility issues can reduce possible code conflict! So, just provide the prototype and the static function definition in the .c file. Do not include the static function in the header file; the .h file is for external consumption.

    Duplicate: Static functions in C

    0 讨论(0)
  • 2021-02-01 14:38

    A static function can be declared in a header file, but this would cause each source file that included the header file to have its own private copy of the function, which is probably not what was intended.

    Are u sure u haven't included the abc.h file in any other .c files?

    Because declaring a function as static, requires the function to be defined in all .c file(s) in which it is included.

    0 讨论(0)
提交回复
热议问题