2015-03. Add advent_utility and libflint

This commit is contained in:
2021-09-02 15:25:09 -07:00
parent e134e22224
commit dc8e8a27fe
8 changed files with 146 additions and 15 deletions

14
include/advent_utility.h Normal file
View File

@ -0,0 +1,14 @@
#ifndef ADVENT_H_UTILITY_
#define ADVENT_H_UTILITY_
struct Point {
int x;
int y;
};
struct Point new_Point(int, int);
struct Point *new_Point_p(int, int);
int same_Point(const struct Point*, const struct Point*);
int same_Point_v(const void*, const void*);
#endif