This is a simple application developed with two main purposes:
- Facilitate QEMU usage: To streamline and simplify my personal workflow when configuring and running virtual machines using the QEMU software.
- Learning C: To serve as a hands-on project to practice and solidify core concepts in the C programming language, such as code modularity, header file management, and compilation using Makefiles.
The project is modularized and organized into specific directories for better maintainability:
.
├── headers/
│ ├── checkFile.h
│ ├── execVm.h
│ └── menu.h
├── functions/
│ ├── checkFile.c
│ ├── execVm.c
│ └── menu.c
├── main.c
└── Makefile