Merge pull request #1188 from tnm/inline-convention

Inline convention
This commit is contained in:
Vicent Martí 2013-01-04 03:57:31 -08:00
commit acb0f65ff8

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);
```