Raw
1 int use_FREE_AND_NULL(int *v)
2 {
3 FREE_AND_NULL(*v);
4 }
5
6 int need_no_if(int *v)
7 {
8 free(v);
9 }