aboutsummaryrefslogtreecommitdiff
path: root/utils.h
blob: 9e5984df50f79ed4fef1f2e85b0b672e043b8ba3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef _UTILS_H_
#define _UTILS_H_

#define _GNU_SOURCE
#include <stdio.h>
#include <stdarg.h>
#include <alloca.h>

// Compute the size needed (including \0) to format given message
size_t printf_len(const char *msg, ...) __attribute__((format(printf, 1, 2)));
// Like sprintf, but returs the string. Expects there's enough space.
char *printf_into(char *dst, const char *msg, ...) __attribute__((format(printf, 2, 3)));
// Like printf, but allocates the data on the stack with alloca and returns. It
// uses the arguments multiple times, so beware of side effects.
#define aprintf(...) printf_into(alloca(printf_len(__VA_ARGS__)), __VA_ARGS__)

#endif /* _UTILS_H_ */