diff options
author | Leah Neukirchen <leah@vuxu.org> | 2021-11-05 19:22:41 +0100 |
---|---|---|
committer | Leah Neukirchen <leah@vuxu.org> | 2021-11-05 19:22:41 +0100 |
commit | 9955555698fb864ff44defcc84c4bdd3807344af (patch) | |
tree | 11cb67dcca175afb458131a237038cd0bf7bacba /README | |
parent | 512f6213133906fc73f5dd2865ae973e4412a1f6 (diff) | |
download | libste-9955555698fb864ff44defcc84c4bdd3807344af.tar.gz libste-9955555698fb864ff44defcc84c4bdd3807344af.tar.xz libste-9955555698fb864ff44defcc84c4bdd3807344af.zip |
add implementation details
Diffstat (limited to 'README')
-rw-r--r-- | README | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/README b/README index 776eb20..79a04b8 100644 --- a/README +++ b/README @@ -46,6 +46,14 @@ DESCRIPTION function call does nothing but return dst again. At any point, truncation can be checked by comparing the return value to end. +IMPLEMENTATION DETAILS + libste is written in portable C99. + + Functions do not use vectorization to keep code size small and because + the inputs are expected to be small enough to not benefit from it. + + The functions can be vendored or inlined into your codebase easily. + AUTHORS Leah Neukirchen <leah@vuxu.org> |