From 9e8e243970f67b88dc36423beb96c825e7190933 Mon Sep 17 00:00:00 2001 From: Stefan Begerad Date: Wed, 15 Mar 2023 20:53:49 +0100 Subject: [PATCH] feat(http-get): initial commit --- .gitignore => http-get/.gitignore | 0 cfg.txt => http-get/cfg.txt | 0 file2char.c => http-get/file2char.c | 0 file2char.h => http-get/file2char.h | 0 main.c => http-get/main.c | 0 makefile => http-get/makefile | 0 pqconfo.c => http-get/pqconfo.c | 0 pqconfo.h => http-get/pqconfo.h | 0 http-get/readme.md | 21 +++++++++++++++++++++ readme.md | 17 +++-------------- 10 files changed, 24 insertions(+), 14 deletions(-) rename .gitignore => http-get/.gitignore (100%) rename cfg.txt => http-get/cfg.txt (100%) rename file2char.c => http-get/file2char.c (100%) rename file2char.h => http-get/file2char.h (100%) rename main.c => http-get/main.c (100%) rename makefile => http-get/makefile (100%) rename pqconfo.c => http-get/pqconfo.c (100%) rename pqconfo.h => http-get/pqconfo.h (100%) create mode 100644 http-get/readme.md diff --git a/.gitignore b/http-get/.gitignore similarity index 100% rename from .gitignore rename to http-get/.gitignore diff --git a/cfg.txt b/http-get/cfg.txt similarity index 100% rename from cfg.txt rename to http-get/cfg.txt diff --git a/file2char.c b/http-get/file2char.c similarity index 100% rename from file2char.c rename to http-get/file2char.c diff --git a/file2char.h b/http-get/file2char.h similarity index 100% rename from file2char.h rename to http-get/file2char.h diff --git a/main.c b/http-get/main.c similarity index 100% rename from main.c rename to http-get/main.c diff --git a/makefile b/http-get/makefile similarity index 100% rename from makefile rename to http-get/makefile diff --git a/pqconfo.c b/http-get/pqconfo.c similarity index 100% rename from pqconfo.c rename to http-get/pqconfo.c diff --git a/pqconfo.h b/http-get/pqconfo.h similarity index 100% rename from pqconfo.h rename to http-get/pqconfo.h diff --git a/http-get/readme.md b/http-get/readme.md new file mode 100644 index 0000000..fed76da --- /dev/null +++ b/http-get/readme.md @@ -0,0 +1,21 @@ +# rgncycle-libulfius + +libulfius API for rgncycle + +* build + +``` +make +``` + +* run + +``` +./main +``` + +* run Valgrind tool `Memcheck` + +``` +valgrind --leak-check=yes -s ./main +``` diff --git a/readme.md b/readme.md index fed76da..ce6816a 100644 --- a/readme.md +++ b/readme.md @@ -2,20 +2,9 @@ libulfius API for rgncycle -* build +## preparation ``` -make -``` - -* run - -``` -./main -``` - -* run Valgrind tool `Memcheck` - -``` -valgrind --leak-check=yes -s ./main +sudo apt install libulfius-dev --no-install-recommends +sudo apt install libconfig-dev --no-install-recommends ```