diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/common/ibuf.c | 2 | ||||
-rw-r--r-- | src/common/ibuf.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/common/ibuf.c b/src/common/ibuf.c index 5d90eb4..07c5487 100644 --- a/src/common/ibuf.c +++ b/src/common/ibuf.c @@ -259,7 +259,7 @@ char peek_input_buffer_next_char(const input_buffer *ibuf) * * ******************************************************************************/ -char text_input_buffer_next_char(input_buffer *ibuf) +char get_input_buffer_next_char(input_buffer *ibuf) { char result; /* Valeur à retourner */ diff --git a/src/common/ibuf.h b/src/common/ibuf.h index ecd8814..b60d1ea 100644 --- a/src/common/ibuf.h +++ b/src/common/ibuf.h @@ -74,7 +74,7 @@ char peek_input_buffer_char(const input_buffer *); char peek_input_buffer_next_char(const input_buffer *); /* Fournit et avance la tête de lecture courante. */ -char text_input_buffer_next_char(input_buffer *); +char get_input_buffer_next_char(input_buffer *); /* Fournit et avance la tête de lecture courante, si possible. */ bool get_input_buffer_next_char_carefully(input_buffer *, char *); |