From 7cce1399961b97898fc9d50c944b6e15f18bf2cb Mon Sep 17 00:00:00 2001 From: geoffrey Date: Mon, 25 Sep 2023 19:28:36 +0200 Subject: [PATCH] Replace by english message --- functions.c | 6 +++--- main.c | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/functions.c b/functions.c index 9a90af4..046830e 100755 --- a/functions.c +++ b/functions.c @@ -3,9 +3,9 @@ void usage() { printf("Usage: [options] [crypt|decrypt] [file]\n"); printf("Options:\n"); - printf("\t-c: chiffrement de Cesar\n"); - printf("\t-v: chiffrement de Vigenere\n"); - printf("\t-t: chiffrement par transposition\n"); + printf("\t-c: Caesar cipher\n"); + printf("\t-v: Vigenere cipher\n"); + printf("\t-t: Transposition cipher\n"); } int fileExist(const char *path) { FILE *f=NULL; diff --git a/main.c b/main.c index 6c079f6..cbd711d 100755 --- a/main.c +++ b/main.c @@ -77,7 +77,7 @@ int main(int argc, char *argv[]) { int key; do{ - printf("Votre cle de chiffrement (entre 1 et 26): "); + printf("Your key (between 1 and 26): "); scanf("%d",&key); }while(key < 1 || key > 26);