Ctrl C n’arrete plus le terminal et Ctrl D ne bug plus #15

This commit is contained in:
rick 2021-03-03 19:57:16 +01:00
parent 647825e14e
commit 739ef2556a
Signed by: Rick
GPG key ID: 2B593F087240EE99

View file

@ -12,6 +12,7 @@
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <errno.h>
/** /**
* get_input(): Permet de récupérer la saisie de lutilisateur * get_input(): Permet de récupérer la saisie de lutilisateur
@ -20,6 +21,7 @@
*/ */
char* get_input() char* get_input()
{ {
fflush(stdin);
int stop = 0; /* en cas de ctrl d */ int stop = 0; /* en cas de ctrl d */
char *buffer = (char *) calloc(MAX_LENGTH, sizeof(char)); char *buffer = (char *) calloc(MAX_LENGTH, sizeof(char));
buffer[0] = '\n'; buffer[0] = '\n';
@ -27,8 +29,9 @@ char* get_input()
while (buffer[0] == '\n' && !stop) while (buffer[0] == '\n' && !stop)
{ {
printf("> "); printf("> ");
if(fgets(buffer, MAX_LENGTH, stdin) == NULL) if(fgets(buffer, MAX_LENGTH, stdin) == NULL && errno != EINTR)
stop++; stop++;
errno = 0; /* réinitialiser le errno pour le prochain fgets */
} }
if (stop) if (stop)
@ -111,5 +114,5 @@ void parse_string(char *orig, char *dest[], char find)
free(dest[i]); free(dest[i]);
dest[i] = NULL; dest[i] = NULL;
free(token); //free(token);
} }