Advertisement
Guest User

Untitled

a guest
Oct 24th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.11 KB | None | 0 0
  1. void move(char **dst, char **src) {
  2.     *dst = *src;
  3.     *src = NULL;
  4. }
  5.  
  6. ....
  7.  
  8. move(&new_node->key, &key);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement