mirror of
https://github.com/tailix/libkernaux.git
synced 2025-02-17 15:45:32 -05:00
Add summary to README.md
This commit is contained in:
parent
431f26bcce
commit
1f29aedcb0
1 changed files with 35 additions and 0 deletions
35
README.md
35
README.md
|
@ -19,6 +19,9 @@ Table of contents
|
||||||
* [Cross](#cross)
|
* [Cross](#cross)
|
||||||
* [Portability](#portability)
|
* [Portability](#portability)
|
||||||
* [Discussion](#discussion)
|
* [Discussion](#discussion)
|
||||||
|
* [Summary](#summary)
|
||||||
|
* [Pure code size](#pure-code-size)
|
||||||
|
* [Used header files](#used-header-files)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -198,3 +201,35 @@ Discussion
|
||||||
|
|
||||||
* [Topic on OSDev.org forum](https://forum.osdev.org/viewtopic.php?f=1&t=37958)
|
* [Topic on OSDev.org forum](https://forum.osdev.org/viewtopic.php?f=1&t=37958)
|
||||||
* [Thread on r/osdev](https://www.reddit.com/r/osdev/comments/k3ueeu/libkernaux_auxiliary_library_for_kernel/)
|
* [Thread on r/osdev](https://www.reddit.com/r/osdev/comments/k3ueeu/libkernaux_auxiliary_library_for_kernel/)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Summary
|
||||||
|
-------
|
||||||
|
|
||||||
|
This information is updated from time to time.
|
||||||
|
|
||||||
|
### Pure code size
|
||||||
|
|
||||||
|
`cloc --vcs=git include/ src/`
|
||||||
|
|
||||||
|
```
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
Language files blank comment code
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
C 12 236 19 1548
|
||||||
|
C/C++ Header 14 179 64 597
|
||||||
|
Assembly 2 7 6 28
|
||||||
|
make 1 0 0 13
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
SUM: 29 422 89 2186
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
```
|
||||||
|
|
||||||
|
### Used header files
|
||||||
|
|
||||||
|
`git grep '#include <' -- include/ src/ | grep -v '#include <kernaux' | awk '{ print $2; }' | sort | uniq`
|
||||||
|
|
||||||
|
* `stdarg.h`
|
||||||
|
* `stdbool.h`
|
||||||
|
* `stddef.h`
|
||||||
|
|
Loading…
Add table
Reference in a new issue