This commit is contained in:
2021-09-18 10:59:09 -07:00
parent fc4cacf492
commit d32ece8e9d
4 changed files with 60 additions and 22 deletions

View File

@ -7,10 +7,15 @@ struct Point {
};
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*);
char *md5_str(const char*);
struct Point *new_Point_p(int, int);
int same_Point(const struct Point *, const struct Point *);
int same_Point_v(const void *, const void *);
char *md5_str(const char *);
char *capture_system(const char *);
#endif