diff options
| -rw-r--r-- | NOTES.txt (renamed from NOTES.md) | 10 | ||||
| -rw-r--r-- | README.md | 1 | ||||
| -rw-r--r-- | README.txt | 3 | ||||
| -rwxr-xr-x | scripts/line_count.sh | 2 |
4 files changed, 10 insertions, 6 deletions
@@ -1,12 +1,14 @@ -# Component Ideas += Component Ideas -## al_hash_map +== al_hash_map - swiss tables? - https://abseil.io/blog/20180927-swisstables - https://abseil.io/about/design/swisstables -## al_str_builder -### Example (pl_str_builder) +== al_str_builder +=== Example (pl_str_builder) - https://github.com/haasn/libplacebo/commit/aaf16a05c39f36d96896a9a3a05051749a587e6d - Lazily builds string based on "templates" which are functions that describe how data should get laid out in the final buffer. + +// vim: set syntax=asciidoc: diff --git a/README.md b/README.md deleted file mode 100644 index 1f1934b..0000000 --- a/README.md +++ /dev/null @@ -1 +0,0 @@ -## libalabaster: C Foundation Library diff --git a/README.txt b/README.txt new file mode 100644 index 0000000..25aaf6f --- /dev/null +++ b/README.txt @@ -0,0 +1,3 @@ +== libalabaster + +// vim: set syntax=asciidoc: diff --git a/scripts/line_count.sh b/scripts/line_count.sh index a6ac787..6af0fe0 100755 --- a/scripts/line_count.sh +++ b/scripts/line_count.sh @@ -1,3 +1,3 @@ #! /usr/bin/env sh export LC_ALL="C" -find ./src ./include -type f -exec sloccount {} + +find ./src ./include -type f -exec loccount {} + |