libc: Document functions in headers #11
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "descriptive_headers"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Right now, header functions are of the sort:
int foo(int, const char*);
These prototypes are not very descriptive.
This pull request starts changing the headers to add parameter names to functions and a short description, to be more helpful and expressive.
Now foo would be:
// Does the foo operation bar times to the string baz.
int foo(int bar, const char* baz);
Which is a lot more readable.
WIP: libc: Document functions in headersto libc: Document functions in headers