Skip to content

Instantly share code, notes, and snippets.

@heronyang
Last active August 3, 2019 20:39
Show Gist options
  • Select an option

  • Save heronyang/93fedba4a1c283da7288a3ae8b85a495 to your computer and use it in GitHub Desktop.

Select an option

Save heronyang/93fedba4a1c283da7288a3ae8b85a495 to your computer and use it in GitHub Desktop.
/* 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