A simple C program for managing rooms and room members.
room-manage is a command-line application written in C.
It provides basic room management and member management functionality.
.
├── bin/
│ └── room-manage
├── src/
│ └── *.c
├── include/
│ └── *.h
├── scripts/
│ └── build
├── README.md
This project does not include a Makefile.
Build the executable using the provided bash script:
chmod +x scripts/build
./scripts/build
The build process outputs the executable:
room-manage
./room-manage
- Header files are located in
include/ - Source files are located in
src/ - You may create your own Makefile if needed