2021-09-02 15:25:09 -07:00
|
|
|
#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*);
|
|
|
|
|
2021-09-08 12:12:11 -07:00
|
|
|
char *md5_str(const char*);
|
|
|
|
|
2021-09-02 15:25:09 -07:00
|
|
|
#endif
|