mirror of
https://github.com/isc-projects/bind9.git
synced 2026-04-29 01:49:02 -04:00
15 lines
176 B
Text
15 lines
176 B
Text
|
|
@@
|
||
|
|
type T;
|
||
|
|
identifier fun;
|
||
|
|
identifier arg;
|
||
|
|
expression val;
|
||
|
|
@@
|
||
|
|
fun(..., T *arg, ...) {
|
||
|
|
...
|
||
|
|
- if (arg != NULL) {
|
||
|
|
- *arg = val;
|
||
|
|
- }
|
||
|
|
+ SET_IF_NOT_NULL(arg, val);
|
||
|
|
...
|
||
|
|
}
|