Advertisement
techno-

increment2

Feb 6th, 2023
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.24 KB | None | 0 0
  1. struct parametros {
  2.         int id;
  3.         int iterations;
  4.         int delay;
  5.         struct array *arr
  6. }
  7.  
  8. void increment2(void *args){
  9.     increment((*(parametros)args).id, (*(parametros)args).iterations, (*(parametros)args).delay, (*(parametros)args)->arr);
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement