Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #ifndef UTILS_H
- #define UTILS_H
- int sum(int a, int b);
- void print(const int* begin, const int* end);
- extern int global;
- void print_global(void);
- typedef struct {
- double x;
- double y;
- } Vec2;
- Vec2 vec2_add(Vec2 a, Vec2 b);
- Vec2 vec2_subtract(Vec2 a, Vec2 b);
- void vec2_print(Vec2 vec);
- #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement