Delete Unwanted files

This commit is contained in:
NyxiumYuuki 2019-12-09 16:45:29 +01:00
parent 0849f227b3
commit b521eb8f8a
No known key found for this signature in database
GPG key ID: 03E8F3CF3183323A
5 changed files with 5 additions and 4 deletions

4
.gitignore vendored
View file

@ -1 +1,3 @@
.vscode
.vscode
*.o
*.exe

View file

@ -12,7 +12,7 @@ int main(int argc, char **argv){
const char *filename = argv[1];
const char *mode= "rb";
// Vérification de l'existance du second argument (Nom du fichier à compresser)
printf("Argc : %d",argc);
printf("Argc : %d\n",argc);
if(argc != 2){
printf("\nErreur : Veuillez mettre en argument un nom de fichier à compresser (Ex: %s text.txt)\n",argv[0]);
return -1;
@ -22,6 +22,7 @@ int main(int argc, char **argv){
printf("\nErreur : Fichier %s inexistant\n",filename);
return -2;
}
printf("test\n");
int *nb_char;
*nb_char=0;
Freq freq;

Binary file not shown.

Binary file not shown.

View file

@ -1,2 +0,0 @@
main_compress.exe gestion_des_fichiers/text.txt
PAUSE