Is there a way to define C inline function in .c file rther than .h file? (Xcode)
- by Eonil
As I know, C inline function body should be defined in .h file.
Because it causes an error 'function-name used but never defined" if body defined in .c file.
Is this regular way? Or how to define inline function body in .c file?