From c3494899de31eee3948940b8aad3f50a9a35ce33c8efd0ff9b00c2231737ee91 Mon Sep 17 00:00:00 2001 From: Sergey Matveev Date: Wed, 25 Jun 2025 15:07:33 +0300 Subject: [PATCH] Add missing AtomFloatEncode rendering in documentation --- c/doc/atom.texi | 1 + c/doc/index.texi | 2 +- c/lib/err.h | 2 ++ 3 files changed, 4 insertions(+), 1 deletion(-) 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 { -- 2.50.0