aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorFederico Angelilli <code@fedang.net>2024-06-07 13:00:09 +0200
committerFederico Angelilli <code@fedang.net>2024-06-07 13:00:09 +0200
commitb2398c1735f0482e83b811fed49550ea3d9d32a2 (patch)
tree028497ee9415d922dcc011cc2b68fdb8e2992d9c /README.md
parentbde2e4df872bcf0cae61805a9b3c1ec400cece16 (diff)
Update documentation
Diffstat (limited to 'README.md')
-rw-r--r--README.md44
1 files changed, 43 insertions, 1 deletions
diff --git a/README.md b/README.md
index 8664ed6..d78a015 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,48 @@
# any\_libs
-single-file C libraries licensed under MIT
+single-file C libraries released under MIT license
**NOTE: Still in early stages of development! Use at your own risk**
+## [any\_log](./any_log.h)
+
+A simple log libary that supports normal and structured logging.
+
+## [any\_hash](./any_hash.h)
+
+A library that provides a simple implementation of the xxHash algorithm.
+
+## [any\_ini](./any_ini.h)
+
+A library that provides a simple ini parser.
+
+## [any\_sexp](./any_sexp.h)
+
+A library for reading, handling and printing s-expressions.
+
+## ...
+
+More libraries will be made and released as time passes.
+
+## License (MIT)
+
+Copyright (c) 2024 Federico Angelilli
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+