Minor fix: Library name section has been added

This commit is contained in:
Alexander Vdolainen 2025-10-28 02:06:51 +02:00
parent 07ea3de219
commit b5d07964dd
3 changed files with 12 additions and 0 deletions

View File

@ -24,6 +24,10 @@ void (*free)(void *);
.br
};
.fi
.SH LIBRARY
libndbuf
.SH DESCRIPTION
The
.B ndbuf_new

View File

@ -12,6 +12,10 @@ uint32_t ndbuf_read_u32(ndbuf_t *b, uint32_t *val);
uint32_t ndbuf_read_u64(ndbuf_t *b, uint64_t *val);
uint32_t ndbuf_read_raw(ndbuf_t *b, void *dst, uint32_t len);
.fi
.SH LIBRARY
libndbuf
.SH DESCRIPTION
The ndbuf_read_ family copies data from an
.B ndbuf_t

View File

@ -13,6 +13,10 @@ uint32_t ndbuf_write_u64(ndbuf_t *b, uint64_t val);
uint32_t ndbuf_write_raw(ndbuf_t *b, void *src, uint32_t len);
uint32_t ndbuf_write_raw_head(ndbuf_t *b, void *src, uint32_t len);
.fi
.SH LIBRARY
libndbuf
.SH DESCRIPTION
The ndbuf_write_ family writes data to an
.B ndbuf_t