diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/__qmacros.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/__qmacros.h b/include/__qmacros.h index e121e83..fd7b803 100644 --- a/include/__qmacros.h +++ b/include/__qmacros.h @@ -1,9 +1,10 @@ #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. +/* Macros for qualifier-preserving functions. These are used to create wrappers + around some functions which will return a const-qualified pointer if the + input pointer is const-qualified, and a non-const-qualified pointer + otherwise. The macros are taken from the N3020 proposal for C23. */ |