mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-22 01:59:26 +00:00
15 lines
176 B
Plaintext
15 lines
176 B
Plaintext
|
@@
|
||
|
type T;
|
||
|
identifier fun;
|
||
|
identifier arg;
|
||
|
expression val;
|
||
|
@@
|
||
|
fun(..., T *arg, ...) {
|
||
|
...
|
||
|
- if (arg != NULL) {
|
||
|
- *arg = val;
|
||
|
- }
|
||
|
+ SET_IF_NOT_NULL(arg, val);
|
||
|
...
|
||
|
}
|