mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-23 02:28:55 +00:00
22 lines
167 B
Plaintext
22 lines
167 B
Plaintext
|
@@
|
||
|
type T;
|
||
|
T **PP;
|
||
|
T *P;
|
||
|
@@
|
||
|
|
||
|
P = *PP;
|
||
|
+ *PP = NULL;
|
||
|
...
|
||
|
- *PP = NULL;
|
||
|
|
||
|
@@
|
||
|
type T;
|
||
|
identifier PP;
|
||
|
identifier P;
|
||
|
@@
|
||
|
|
||
|
T *P = *PP;
|
||
|
+ *PP = NULL;
|
||
|
...
|
||
|
- *PP = NULL;
|