This is a simple CRUD (Create, Read, Update, Delete) program written in Assembly x86-64, specifically for Linux with System V AMD64 ABI calling convention. It's still under development.
sudo apt-get install gcc make -y;
git clone https://github.com/GNUWeeb/simple-crud-gw-membership;
cd simple-crud-gw-membership;
make;
# Run the program
./main;
In this program, we use the following struct layout to store the record.
struct member {
char name[64]; // Name
char tg_username[32]; // Telegram username
char gender; // m (male), f (female), h (hidden)
};
- Ammar Faizi (@ammarfaizi2)
We welcome pull request on the GitHub repository https://github.com/GNUWeeb/simple-crud-gw-membership
Reach us on our Telegram group https://t.me/GNUWeeb.
This software is licensed under the GNU GPL-2.0