diff options
Diffstat (limited to 'src/libstrerr/strerr_warnl.c')
-rw-r--r-- | src/libstrerr/strerr_warnl.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/libstrerr/strerr_warnl.c b/src/libstrerr/strerr_warnl.c new file mode 100644 index 0000000..17c370d --- /dev/null +++ b/src/libstrerr/strerr_warnl.c @@ -0,0 +1,22 @@ +/* ISC license. */ + +/* MT-unsafe */ + +#include <stdarg.h> + +#include <skalibs/strerr.h> + +void strerr_warnl (unsigned int n, ...) +{ + if (n) + { + va_list ap ; + char const *v[n] ; + va_start(ap, n) ; + va_arg(ap, unsigned int) ; + for (unsigned int i = 0 ; i < n ; i++) + v[i++] = va_arg(ap, char const *) ; + va_end(ap) ; + strerr_warnv(v, n) ; + } +} |