Guest User

Untitled

a guest
Oct 15th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. #include <stdint.h>
  2.  
  3. typedef struct {
  4. int32_t bar;
  5. double baz;
  6. uint8_t bat;
  7. } foo;
  8.  
  9. void foobar(foo* x) {
  10. x->bar++;
  11. x->baz = x->baz + (double)(x->bat);
  12. x->bat--;
  13. }
Add Comment
Please, Sign In to add comment