Merge pull request #745 from kks32/master

Fixes wrong order of type and function name in naming scheme - master branch
This commit is contained in:
Gabriel Dos Reis 2016-10-03 16:41:53 -07:00 committed by GitHub
commit 7b4a1903ec

View File

@ -17904,7 +17904,7 @@ This is not evil.
##### Example
sqrt double(double x); // return the square root of x; x must be non-negative
double sqrt(double x); // return the square root of x; x must be non-negative
int length(const char* p); // return the number of characters in a zero-terminated C-style string