Ctrl C n’arrete plus le terminal et Ctrl D ne bug plus #15
This commit is contained in:
parent
647825e14e
commit
739ef2556a
1 changed files with 5 additions and 2 deletions
|
@ -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 l’utilisateur
|
* get_input(): Permet de récupérer la saisie de l’utilisateur
|
||||||
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue