Skip to content

Latest commit

 

History

History
44 lines (31 loc) · 1.11 KB

README.md

File metadata and controls

44 lines (31 loc) · 1.11 KB

Simple CRUD GNU/Weeb Membership

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.

screenshot.jpg

Setup

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;

Data Structure

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)
};

Maintainer

Contribute

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.

License

This software is licensed under the GNU GPL-2.0