Go to the source code of this file.
|
| | c4 |
| | (Undefined by default) Use shorter error message from checks/asserts: do not show the check condition in the error message.
|
| |
| | c4::yml |
| |
◆ _prflag
| #define _prflag |
( |
|
fl, |
|
|
|
txt |
|
) |
| |
Value: do { \
if((flags & (fl)) == (fl)) \
{ \
if(gotone) \
{ \
if(pos + 1 < buf.len) \
buf[pos] = '|'; \
++pos; \
} \
csubstr fltxt = txt; \
if(pos + fltxt.len <= buf.len) \
memcpy(buf.str + pos, fltxt.str, fltxt.len); \
pos += fltxt.len; \
gotone = true; \
flags = (flags & ~(fl)); \
} \
} while(0)