From: Sergey Matveev Date: Wed, 25 Jun 2025 12:07:33 +0000 (+0300) Subject: Add missing AtomFloatEncode rendering in documentation X-Git-Tag: v0.0.0~18 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=c3494899de31eee3948940b8aad3f50a9a35ce33c8efd0ff9b00c2231737ee91;p=keks.git Add missing AtomFloatEncode rendering in documentation --- diff --git a/c/doc/atom.texi b/c/doc/atom.texi index 9f7074b..14bee5d 100644 --- a/c/doc/atom.texi +++ b/c/doc/atom.texi @@ -18,6 +18,7 @@ @DOCSTRING KEKSAtomMagicEncode@ @DOCSTRING KEKSAtomUintEncode@ @DOCSTRING KEKSAtomSintEncode@ +@DOCSTRING KEKSAtomFloatEncode@ @DOCSTRING KEKSAtomListEncode@ @DOCSTRING KEKSAtomMapEncode@ @DOCSTRING KEKSAtomBlobEncode@ diff --git a/c/doc/index.texi b/c/doc/index.texi index 0223ad5..fb3947a 100644 --- a/c/doc/index.texi +++ b/c/doc/index.texi @@ -12,9 +12,9 @@ C99 implementation of the @url{http://www.keks.cypherpunks.su, KEKS} codec. @itemize -@item No floats support. @item No unsigned integers support bigger than 64-bit. @item Negative integers are supported only up to 63-bits. +@item Floats are supported only up to double. @item No TAI64NA support. @end itemize diff --git a/c/lib/err.h b/c/lib/err.h index 946f3fe..74ca805 100644 --- a/c/lib/err.h +++ b/c/lib/err.h @@ -43,6 +43,8 @@ // Unexpected EOC met. // @item KEKSErrBadMagic // Wrong magic value. +// @item KEKSErrFloatNonInt +// FLOAT contains non-INT element. // @end table // @end deftp enum KEKSErr {