From f3d5157564992f1ef9f390b3ce0c7d3706ba0f19 Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Sun, 4 Oct 2020 01:06:16 +0000 Subject: doc: fix URLs --- doc/libstddjb/lolstdio.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'doc/libstddjb/lolstdio.html') diff --git a/doc/libstddjb/lolstdio.html b/doc/libstddjb/lolstdio.html index 2af1d72..57ce81d 100644 --- a/doc/libstddjb/lolstdio.html +++ b/doc/libstddjb/lolstdio.html @@ -29,7 +29,7 @@ and implemented in the libskarnet.a or libskarnet.so library.

lolstdio is a set of convenience functions providing -printf-style +printf-style formatting but interacting with buffers or bufallocs instead of stdio FILEs.

@@ -52,7 +52,7 @@ writing than fixed-size buffers or FILEs are.

The current lolstdio implementation relies on the libc's -vsnprintf +vsnprintf function.

@@ -60,31 +60,31 @@ function.

int vbprintf (buffer *b, char const *format, va_list args)
-Like vfprintf +Like vfprintf except that the result is written to the buffer b.

int bprintf (buffer *b, char const *format, ...)
-Like fprintf +Like fprintf except that the result is written to the buffer b.

int lolprintf (char const *format, ...)
-Like printf +Like printf except that the result is written to the buffer buffer_1.

int vbaprintf (bufalloc *ba, char const *format, va_list args)
-Like vfprintf +Like vfprintf except that the result is written to the bufalloc ba.

int baprintf (bufalloc *ba, char const *format, ...)
-Like fprintf +Like fprintf except that the result is written to the bufalloc ba.

-- cgit v1.2.3