Last active
August 3, 2019 20:35
-
-
Save heronyang/a94de635b48a26e019e8557fef1956b7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* point.h */ | |
| struct Point; | |
| struct Point* makePoint(double x, double y); | |
| double getDistance(struct Point *p1, struct Point *p2); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment