loc.h (212B)
1 #ifndef LB_LOC 2 #define LB_LOC 3 4 struct lb_book { 5 char* classification; 6 char* title; 7 char* author; 8 }; 9 10 int 11 lb_book_destroy(struct lb_book* book); 12 13 int 14 lb_loc_lookup(struct lb_book* book, char* isbn); 15 16 #endif