Is there a way to define C inline function in .c file rther than .h file? (Xcode)
Posted
by Eonil
on Stack Overflow
See other posts from Stack Overflow
or by Eonil
Published on 2010-05-02T06:23:21Z
Indexed on
2010/05/02
6:27 UTC
Read the original article
Hit count: 160
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?
© Stack Overflow or respective owner