kske
/
linked-list
Archived
1
Fork 0
This repository has been archived on 2020-12-15. You can view files and clone it, but cannot push or open issues or pull requests.
linked-list/Demonstration/book.h

13 lines
235 B
C

#pragma once
typedef struct {
char* title;
char* author;
int year;
} Book;
Book* book_create(const char* title, const char* author, int year);
void book_print(const void* data);
int title_eq(const void* title, const void* data);