summaryrefslogtreecommitdiff
path: root/src/arch/instriter.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2019-05-30 10:49:12 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2019-05-30 10:49:12 (GMT)
commitb66cda8ef8be6d9929683ab5a1b22bdfe4b22849 (patch)
tree6bae6ab5b1d41da87131f6d6a030a224ba29f542 /src/arch/instriter.h
parentb9811a151ebeca6b64cdfc0a07df697ecfe84d7e (diff)
Determined if an iterator is at its ending position.
Diffstat (limited to 'src/arch/instriter.h')
-rw-r--r--src/arch/instriter.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/arch/instriter.h b/src/arch/instriter.h
index 68db9cb..9a58005 100644
--- a/src/arch/instriter.h
+++ b/src/arch/instriter.h
@@ -57,6 +57,9 @@ GArchInstruction *get_instruction_iterator_prev(instr_iter_t *);
/* Fournit l'instruction qui en suit une autre. */
GArchInstruction *get_instruction_iterator_next(instr_iter_t *);
+/* Détermine s'il reste une instruction dans l'itération. */
+bool has_instruction_iterator_next(const instr_iter_t *);
+
#endif /* _ARCH_INSTRITER_H */