aboutsummaryrefslogtreecommitdiff
path: root/include/__qmacros.h
blob: d7658642d5de9c563c9424fcb55e9d5b698e8faf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef MLIB___QMACROS_H
#define MLIB___QMACROS_H

/* Macros for qualifier-preserving functions.  These are wrappers around some
   functions declared above which will return a const-qualified pointer if the
   input string is const-qualified, and a non-const-qualified pointer otherwise.

   The macros are taken from the N3020 proposal for C23. */

/* clang-format off */
#define _RUNE_PTR_IS_CONST(P) \
	_Generic(1 ? (P) : (void *)(P), \
	         const void *: 1, \
	         default: 0)
#define _RUNE_STATIC_IF(P, T, E) \
	_Generic(&(char[!!(P) + 1]){0}, \
	         char(*)[2]: T, \
	         char(*)[1]: E)
#define _RUNE_Q_PTR(T, F, S, ...) \
	_RUNE_STATIC_IF(_RUNE_PTR_IS_CONST((S)), \
	                (const T *)(F)(__VA_ARGS__), \
	                      (T *)(F)(__VA_ARGS__))
/* clang-format on */

#endif /* !MLIB___QMACROS_H */