summaryrefslogtreecommitdiff
path: root/plugins/arm/v7/operands/offset.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/arm/v7/operands/offset.h')
-rw-r--r--plugins/arm/v7/operands/offset.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/plugins/arm/v7/operands/offset.h b/plugins/arm/v7/operands/offset.h
index e5f967e..6c08da0 100644
--- a/plugins/arm/v7/operands/offset.h
+++ b/plugins/arm/v7/operands/offset.h
@@ -1,6 +1,6 @@
/* Chrysalide - Outil d'analyse de fichiers binaires
- * offset.h - prototypes pour la constitution d'un décallage positif ou négatif
+ * offset.h - prototypes pour la constitution d'un décalage positif ou négatif
*
* Copyright (C) 2014-2017 Cyrille Bagard
*
@@ -44,23 +44,23 @@
#define G_ARMV7_OFFSET_OPERAND_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), G_TYPE_ARMV7_OFFSET_OPERAND, GArmV7OffsetOperandClass))
-/* Définition d'un opérande visant à constituer un décallage relatif ARMv7 (instance) */
+/* Définition d'un opérande visant à constituer un décalage relatif ARMv7 (instance) */
typedef struct _GArmV7OffsetOperand GArmV7OffsetOperand;
-/* Définition d'un opérande visant à constituer un décallage relatif ARMv7 (classe) */
+/* Définition d'un opérande visant à constituer un décalage relatif ARMv7 (classe) */
typedef struct _GArmV7OffsetOperandClass GArmV7OffsetOperandClass;
-/* Indique le type défini par la GLib pour un décallage relatif ARMv7. */
+/* Indique le type défini par la GLib pour un décalage relatif ARMv7. */
GType g_armv7_offset_operand_get_type(void);
-/* Crée un décallage selon un sens et une valeur donnés. */
+/* Crée un décalage selon un sens et une valeur donnés. */
GArchOperand *g_armv7_offset_operand_new(bool, GArchOperand *);
-/* Indique le sens du décallage représenté. */
+/* Indique le sens du décalage représenté. */
bool g_armv7_offset_operand_is_positive(const GArmV7OffsetOperand *);
-/* Founit la valeur utilisée pour un décallage. */
+/* Founit la valeur utilisée pour un décalage. */
GArchOperand *g_armv7_offset_operand_get_value(const GArmV7OffsetOperand *);