Last active
August 3, 2019 20:39
-
-
Save heronyang/93fedba4a1c283da7288a3ae8b85a495 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
| /* labeledPoint.h */ | |
| struct LabeledPoint; | |
| struct LabeledPoint* makeLabeledPoint(double x, double y, char* label); | |
| void setLabel(struct LabeledPoint *lp, char *label); | |
| char* getLabel(struct LabeledPoint *lp); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment