From: Jérôme Benoit Date: Mon, 6 Apr 2020 17:13:04 +0000 (+0200) Subject: Cleanups. X-Git-Url: https://git.piment-noir.org/?p=TD_C.git;a=commitdiff_plain;h=a56e04feef7fd5e0f4fb4c1f829652f2ecd8dd43 Cleanups. --- diff --git a/TP_7/exo3/exo3.c b/TP_7/exo3/exo3.c index 03d6390..2008814 100644 --- a/TP_7/exo3/exo3.c +++ b/TP_7/exo3/exo3.c @@ -1,7 +1,7 @@ #include #include -//FIXME: Comment the code !!! +// FIXME: Comment the code !!! void swap(char* v1, char* v2) { if (v1 != v2) { @@ -32,7 +32,7 @@ void permAlphaChar(char* str, int key) { char alphabet[26] = "abcdefghijklmnopqrstuvwxyz"; int str_length = stringLength(str); - for (int i = 0; i < str_length; i++) { + for (int i = 0; i < str_length; i++) { //if (str[i] == ' ') continue; for (int j = 0; j < 26; j++) { if (str[i] == alphabet[j]) { @@ -48,16 +48,16 @@ void permAlphaChar(char* str, int key) { int main() { char rev_msg[] = "Bonjour le monde"; - int rev_length = stringLength(rev_msg); + int rev_length = stringLength(rev_msg); char perm_msg[] = "Bonjour a tous et toutes"; - int perm_length = stringLength(perm_msg); + int perm_length = stringLength(perm_msg); printf("La chaine de caracteres a inverser est \"%s\" et a pour longueur %d caractere(s)\n", rev_msg, rev_length); reverseString(rev_msg); printf("La chaine inversee de caracteres est \"%s\"\n", rev_msg); printf("\n"); - + printf("La chaine de caracteres a permuter est \"%s\" et a pour longueur %d caractere(s)\n", perm_msg, perm_length); permAlphaChar(perm_msg, 13); printf("La chaine permutee de caracteres est \"%s\"\n", perm_msg);