Advertisement
imk0tter

Kernel port code

Dec 21st, 2022
731
0
Never
2
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.37 KB | None | 0 0
  1. inline void port_shit(unsigned int x)
  2. {
  3.     //printf("OPEN: %i\n", x);
  4.     //printf("CONNECT: %i\n", x);
  5.     //printf("CLOSE: %i\n", x);
  6. }
  7.  
  8.  
  9. void kernel(unsigned int max_iteration)
  10. {
  11.     for (unsigned int current_iteration = 0; current_iteration < max_iteration; ++current_iteration)
  12.     {
  13.         port_shit(current_iteration);
  14.     }
  15.     port_shit(max_iteration);
  16. }
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement