#include #include #include #include #define TITLE_LEN 100 #define
#include #include #include #include #define TITLE_LEN 100 #define NAME_LEN 30 #define ROOM_LEN 20 // SCOURCE FILE FOR THE OTHER FUNCTIONS // #include “book.h” #include “readline.h” struct book *add_to_end(struct book *list){ //add code struct book *prev_book = NULL, *end = list; struct book *new_book = NULL; new_book = malloc(1 * sizeof(struct book)); if (new_book == NULL) […]
Read More »