Advertisement
Guest User

Untitled

a guest
Dec 6th, 2016
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. void myFunc(void) {
  2. mystruct_t item;
  3.  
  4. myOtherFunct(&item);
  5. }
  6.  
  7. bool myOtherFunct(mystruct_t* item) {
  8. *item.weight = 10;
  9.  
  10. return true;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement