summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2018-07-04 10:27:41 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2018-07-04 10:27:41 (GMT)
commita0463dfa8fe232d01ea925668f393d7507fa787b (patch)
treecc2bb210cf377a96567db1cff9ea7952fc66303f /src/common
parent1ade82e135d4e815db5b33c9ebd67632b74e5e1d (diff)
Renamed the function providing next character from input buffers.
Diffstat (limited to 'src/common')
-rw-r--r--src/common/ibuf.c2
-rw-r--r--src/common/ibuf.h2
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 *);