Narthex

Modular dictionary generator
git clone git@git.mcdim.xyz:/var/www/git/Narthex.git
Log | Files | Refs | README

commit e06ab3418ca4e878be8ad14433b20ef3dcdb8272
parent 1f661a9184cafd3f45f2b332b97a4e200d410824
Author: Michael Constantine Dimopoulos <mk@mcdim.xyz>
Date:   Sat, 24 Jul 2021 11:19:07 +0000

Fixed nleet help panel

Diffstat:
Mninc/nin.c | 2+-
Mnleet/nleet.c | 6+++---
2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/ninc/nin.c b/ninc/nin.c @@ -12,7 +12,7 @@ * */ -#define VERSION "0.1" +#define VERSION "v0.1" #define BUFFER_SIZE 256 static int diff --git a/nleet/nleet.c b/nleet/nleet.c @@ -82,14 +82,14 @@ void die(char * str) void help(char * exename) { - printf( "Nhance - Narthex leetfier%s\n" + printf( "Nhance - Narthex leetfier %s\n" "By Michael C. Dim. <mk@mcdim.xyz>\n\n" "-h Print this panel & exit\n" "-v Print current version & exit\n\n" - "Usage: cat [FILENAME] | %s\n", + "Usage: cat [FILENAME] | %s\n" " %s [FILENAME]\n", - VERSION, exename); + VERSION, exename, exename); exit(0); }