aboutsummaryrefslogtreecommitdiffstats
path: root/man3/libsimple_vweprintf.3
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2024-08-18 09:58:23 +0200
committerMattias Andrée <maandree@kth.se>2024-08-18 09:58:23 +0200
commita69f0f613687edf6c1f1ee83b462f77e8ea3c9a9 (patch)
treed976683461a0f427d2f1ef79a8732a048dd0c67b /man3/libsimple_vweprintf.3
parentMerge tag '1.3' into since (diff)
parentUpdate VERSION_MINOR (diff)
downloadlibsimple-a69f0f613687edf6c1f1ee83b462f77e8ea3c9a9.tar.gz
libsimple-a69f0f613687edf6c1f1ee83b462f77e8ea3c9a9.tar.bz2
libsimple-a69f0f613687edf6c1f1ee83b462f77e8ea3c9a9.tar.xz
Merge tag '1.4' into since
Version 1.4
Diffstat (limited to '')
-rw-r--r--man3/libsimple_vweprintf.326
1 files changed, 13 insertions, 13 deletions
diff --git a/man3/libsimple_vweprintf.3 b/man3/libsimple_vweprintf.3
index 8db6f0a..b40799d 100644
--- a/man3/libsimple_vweprintf.3
+++ b/man3/libsimple_vweprintf.3
@@ -7,15 +7,15 @@ libsimple_vweprintf \- print an error message
#include <libsimple.h>
extern int libsimple_default_failure_exit;
-extern void (*libsimple_eprint_preprint)(void);
-extern void (*libsimple_eprint_postprint)(void);
+extern void (*libsimple_eprintf_preprint)(void);
+extern void (*libsimple_eprintf_postprint)(void);
void libsimple_vweprintf(const char *\fIfmt\fP, va_list \fIap\fP);
-static inline void libsimple_weprintf(const char *\fIfmt\fP, ...);
-static inline void libsimple_venprintf(int \fIstatus\fP, const char *\fIfmt\fP, va_list \fIap\fP);
-static inline void libsimple_enprintf(int \fIstatus\fP, const char *\fIfmt\fP, ...);
-static inline void libsimple_veprintf(const char *\fIfmt\fP, va_list \fIap\fP);
-static inline void libsimple_eprintf(const char *\fIfmt\fP, ...);
+inline void libsimple_weprintf(const char *\fIfmt\fP, ...);
+inline void libsimple_venprintf(int \fIstatus\fP, const char *\fIfmt\fP, va_list \fIap\fP);
+inline void libsimple_enprintf(int \fIstatus\fP, const char *\fIfmt\fP, ...);
+inline void libsimple_veprintf(const char *\fIfmt\fP, va_list \fIap\fP);
+inline void libsimple_eprintf(const char *\fIfmt\fP, ...);
#ifndef vweprintf
# define vweprintf libsimple_vweprintf
@@ -124,18 +124,18 @@ The
and
.BR libsimple_eprintf ()
functions call
-.I libsimple_eprint_preprint
+.I libsimple_eprintf_preprint
unless it is
.B NULL
before they print the message, after printing
the message they call
-.I libsimple_eprint_postprint
+.I libsimple_eprintf_postprint
unless it is
.BR NULL .
The
-.I libsimple_eprint_preprint
+.I libsimple_eprintf_preprint
and
-.I libsimple_eprint_postprint
+.I libsimple_eprintf_postprint
variables are
.B NULL
byte default.
@@ -149,9 +149,9 @@ may have a different value from when the
or
.BR libsimple_eprintf ()
function called when
-.I libsimple_eprint_preprint
+.I libsimple_eprintf_preprint
or
-.I libsimple_eprint_postprint
+.I libsimple_eprintf_postprint
is called.
.SH RETURN VALUE