diff options
author | Mattias Andrée <m@maandree.se> | 2025-02-20 20:24:28 +0100 |
---|---|---|
committer | Mattias Andrée <m@maandree.se> | 2025-02-20 20:24:28 +0100 |
commit | 4c745dab4c6925fa17714c2214ed5941e5cbf64d (patch) | |
tree | 30129b2838d7a27a7a37fd37f5f95d6b355b7203 /libterminput_marshal_text__.c | |
parent | Add state marshalling and unmarshalling functions (diff) | |
download | libterminput-4c745dab4c6925fa17714c2214ed5941e5cbf64d.tar.gz libterminput-4c745dab4c6925fa17714c2214ed5941e5cbf64d.tar.bz2 libterminput-4c745dab4c6925fa17714c2214ed5941e5cbf64d.tar.xz |
Validate unmarshalled state + add man pages for (un)marshal functions
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to '')
-rw-r--r-- | libterminput_marshal_text__.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libterminput_marshal_text__.c b/libterminput_marshal_text__.c index fa9b542..264ec04 100644 --- a/libterminput_marshal_text__.c +++ b/libterminput_marshal_text__.c @@ -3,10 +3,10 @@ int -libterminput_marshal_text__(struct libterminput_marshaller *how, const struct libterminput_text *what) +libterminput_marshal_text__(struct libterminput_marshaller *how, const struct libterminput_text *what) /* TODO test */ { if (how->store(how, &what->nbytes, sizeof(what->nbytes)) || - how->store(how, what->bytes, sizeof(what->nbytes))) + how->store(how, what->bytes, what->nbytes)) return -1; return 0; } |