The inline semantic in C99 is a little bit confusing I have to admit. The inline
quantifier allows you to define alternative definitions of a function.
If a function is defined everywhere as just inline
in both declarations and definition then this definition is valid only in the local translation unit. In the C99 standard this definition is very vague, but in practice most compilers implement this in a similar sense to static inline
. Essentially just inline
overwrites any other function with the same name in any other linking unit. Thus if you declare a function as just inline
in a header the compiler will expect to find a definition of it in the same compilation unit and will give you an error later if it doesn't.
Now if a function is to be both inlineable and available in other translation units then it needs to be defined as extern
in the header declaration. Then the compiler won't look for it just in the current compilation unit.
static inline
is by far the most portable definition at the moment and is constrained to the current translation unit. This is often found in headers together with the actual function definition.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…