Advertisement
Guest User

Untitled

a guest
May 22nd, 2015
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.10 KB | None | 0 0
  1. void* coptInt(void* i){
  2. int* copyI = malloc(sizeof(int));
  3. *copyI = *(int*)i;
  4. return copyI;
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement