Created
August 8, 2013 21:02
-
-
Save kyrylo/6188693 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
| 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