Skip to content

Instantly share code, notes, and snippets.

@kyrylo
Created August 8, 2013 21:02
Show Gist options
  • Select an option

  • Save kyrylo/6188693 to your computer and use it in GitHub Desktop.

Select an option

Save kyrylo/6188693 to your computer and use it in GitHub Desktop.
void print_library(const struct book *library, int count);
void sort(struct book *library, int count, void (*sorting_method)(struct book *, struct book, int, int));
void alphabetically(struct book *library, struct book temp, int i, int j);
void by_value(struct book *library, struct book temp, int i, int j);
void print_delim(void);
int fltcmp(float a, float b);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment