perf tools: Don't clone maps from parent when synthesizing forks
[linux/fpc-iii.git] / tools / lib / vsprintf.c
blobe08ee147eab4346cdedc582fd5f017cd79cf1d37
1 // SPDX-License-Identifier: GPL-2.0
2 #include <sys/types.h>
3 #include <linux/kernel.h>
4 #include <stdio.h>
6 int vscnprintf(char *buf, size_t size, const char *fmt, va_list args)
8 int i = vsnprintf(buf, size, fmt, args);
9 ssize_t ssize = size;
11 return (i >= ssize) ? (ssize - 1) : i;
14 int scnprintf(char * buf, size_t size, const char * fmt, ...)
16 ssize_t ssize = size;
17 va_list args;
18 int i;
20 va_start(args, fmt);
21 i = vsnprintf(buf, size, fmt, args);
22 va_end(args);
24 return (i >= ssize) ? (ssize - 1) : i;