Add note in CONVENTIONS about inlined functions

This commit is contained in:
Ted Nyman 2013-01-03 16:14:23 -08:00 committed by Vicent Marti
parent 10aa44cee2
commit ed8fb8210d

View File

@ -159,4 +159,11 @@ GIT_END_DECL
#endif #endif
``` ```
## Inlined functions
All inlined functions must be declared as:
```C
GIT_INLINE(result_type) git_modulename_functionname(arg_list);
```