nicolasanelli / c-language-book-system

System of register and search of books developed in C, made to execute in terminal, with friendly command line layout.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Book system

This is a system of register and search of books developed in C, made to execute in terminal, with friendly command line layout.

Prerequisites

For this code, you will need a C language compiler.

Compiling and running

For running it you need to compile the library and the main source code file of project using the below command:

$ make

This will create a new executable in the project root path named BookSystem (or BookSystem.exe on windows). Now you only need to run it:

For Linux/MAC users:

./BookSystem 

For Windows users, just double click on executable program.

How to use

Considering that this system was developed in C, the use is around choosing options by typing a number of the option, then pressing Enter key to confirm.

Things to increase

  • Create a layout helper library
  • Do better readme documentation
  • Create file persistence library
  • Allow edit records
  • Allow remove records
  • Search books by author

Authors

Considerations:

Feel free for forking this project, and submiting any improvement.

License

MIT License

Copyright (c) 2019 Nicolas Anelli

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

System of register and search of books developed in C, made to execute in terminal, with friendly command line layout.


Languages

Language:C 98.4%Language:Makefile 1.6%