summaryrefslogtreecommitdiff
path: root/src/decomp
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2014-04-28 17:25:25 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2014-04-28 17:25:25 (GMT)
commit9fb4e05f124c8f794c835251f5e31142039f9f59 (patch)
tree36cab0df0b287a0f6a0221d207565ca95faf03ea /src/decomp
parent4ed8f24200c6e4df4c3fe922fc81923fb39f44be (diff)
Updated all copyright headers.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@373 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/decomp')
-rw-r--r--src/decomp/context-int.h6
-rw-r--r--src/decomp/context.c6
-rw-r--r--src/decomp/context.h6
-rw-r--r--src/decomp/expr/access.c6
-rw-r--r--src/decomp/expr/access.h6
-rw-r--r--src/decomp/expr/arithm.c6
-rw-r--r--src/decomp/expr/arithm.h4
-rw-r--r--src/decomp/expr/array.c6
-rw-r--r--src/decomp/expr/array.h4
-rw-r--r--src/decomp/expr/assign.c6
-rw-r--r--src/decomp/expr/assign.h6
-rw-r--r--src/decomp/expr/block.c6
-rw-r--r--src/decomp/expr/block.h6
-rw-r--r--src/decomp/expr/call.c6
-rw-r--r--src/decomp/expr/call.h6
-rw-r--r--src/decomp/expr/comp.c4
-rw-r--r--src/decomp/expr/comp.h4
-rw-r--r--src/decomp/expr/cond.c4
-rw-r--r--src/decomp/expr/cond.h4
-rw-r--r--src/decomp/expr/dalvik/array.c4
-rw-r--r--src/decomp/expr/dalvik/array.h4
-rw-r--r--src/decomp/expr/immediate.c6
-rw-r--r--src/decomp/expr/immediate.h4
-rw-r--r--src/decomp/expr/pseudo.c6
-rw-r--r--src/decomp/expr/pseudo.h6
-rw-r--r--src/decomp/expr/return.c6
-rw-r--r--src/decomp/expr/return.h4
-rw-r--r--src/decomp/expr/text.c4
-rw-r--r--src/decomp/expr/text.h4
-rw-r--r--src/decomp/expression-int.h6
-rw-r--r--src/decomp/expression.c4
-rw-r--r--src/decomp/expression.h4
-rw-r--r--src/decomp/instr/ite.c4
-rw-r--r--src/decomp/instr/ite.h4
-rw-r--r--src/decomp/instr/keyword.c4
-rw-r--r--src/decomp/instr/keyword.h4
-rw-r--r--src/decomp/instr/switch.c4
-rw-r--r--src/decomp/instr/switch.h4
-rw-r--r--src/decomp/instruction-int.h6
-rw-r--r--src/decomp/instruction.c6
-rw-r--r--src/decomp/instruction.h6
-rw-r--r--src/decomp/lang/asm.c4
-rw-r--r--src/decomp/lang/asm.h4
-rw-r--r--src/decomp/lang/java.c4
-rw-r--r--src/decomp/lang/java.h4
-rw-r--r--src/decomp/output-int.h4
-rw-r--r--src/decomp/output.c4
-rw-r--r--src/decomp/output.h6
48 files changed, 118 insertions, 118 deletions
diff --git a/src/decomp/context-int.h b/src/decomp/context-int.h
index 974f5ae..24cf636 100644
--- a/src/decomp/context-int.h
+++ b/src/decomp/context-int.h
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* context.c - mise en place d'un contexte de décompilation
*
- * Copyright (C) 2010 Cyrille Bagard
+ * Copyright (C) 2012-2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/decomp/context.c b/src/decomp/context.c
index ef5c25e..2b6c4e7 100644
--- a/src/decomp/context.c
+++ b/src/decomp/context.c
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* context.c - mise en place d'un contexte de décompilation
*
- * Copyright (C) 2010 Cyrille Bagard
+ * Copyright (C) 2010-2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/decomp/context.h b/src/decomp/context.h
index d1b1ac9..96e9576 100644
--- a/src/decomp/context.h
+++ b/src/decomp/context.h
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* context.h - prototypes pour la mise en place d'un contexte de décompilation
*
- * Copyright (C) 2010 Cyrille Bagard
+ * Copyright (C) 2010-2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/decomp/expr/access.c b/src/decomp/expr/access.c
index 8afe635..0af60c7 100644
--- a/src/decomp/expr/access.c
+++ b/src/decomp/expr/access.c
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* access.c - représentation des accès à des éléments d'entités
*
- * Copyright (C) 2010 Cyrille Bagard
+ * Copyright (C) 2012-2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/decomp/expr/access.h b/src/decomp/expr/access.h
index 9b4561f..1207937 100644
--- a/src/decomp/expr/access.h
+++ b/src/decomp/expr/access.h
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* access.h - prototypes pour la représentation des accès à des éléments d'entités
*
- * Copyright (C) 2010 Cyrille Bagard
+ * Copyright (C) 2012 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/decomp/expr/arithm.c b/src/decomp/expr/arithm.c
index e8a4c30..f14086d 100644
--- a/src/decomp/expr/arithm.c
+++ b/src/decomp/expr/arithm.c
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* arithm.c - représentation des opérations arithmétiques
*
- * Copyright (C) 2010 Cyrille Bagard
+ * Copyright (C) 2010-2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/decomp/expr/arithm.h b/src/decomp/expr/arithm.h
index 1de9865..d82c00c 100644
--- a/src/decomp/expr/arithm.h
+++ b/src/decomp/expr/arithm.h
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* arithm.h - prototypes pour la représentation des opérations arithmétiques
*
* Copyright (C) 2010 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/decomp/expr/array.c b/src/decomp/expr/array.c
index b2bb2f1..d335f61 100644
--- a/src/decomp/expr/array.c
+++ b/src/decomp/expr/array.c
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* array.c - manipulations de tableaux génériques
*
- * Copyright (C) 2010 Cyrille Bagard
+ * Copyright (C) 2010-2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/decomp/expr/array.h b/src/decomp/expr/array.h
index 0007a8e..cb8e39e 100644
--- a/src/decomp/expr/array.h
+++ b/src/decomp/expr/array.h
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* array.h - prototypes pour les manipulations de tableaux génériques
*
* Copyright (C) 2010 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/decomp/expr/assign.c b/src/decomp/expr/assign.c
index 939407d..9a5b308 100644
--- a/src/decomp/expr/assign.c
+++ b/src/decomp/expr/assign.c
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* assign.c - représentation des assignations
*
- * Copyright (C) 2010 Cyrille Bagard
+ * Copyright (C) 2010-2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/decomp/expr/assign.h b/src/decomp/expr/assign.h
index b55853e..4323c14 100644
--- a/src/decomp/expr/assign.h
+++ b/src/decomp/expr/assign.h
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* assign.h - prototypes pour la représentation des assignations
*
- * Copyright (C) 2010 Cyrille Bagard
+ * Copyright (C) 2010-2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/decomp/expr/block.c b/src/decomp/expr/block.c
index 6b811f6..b542dc0 100644
--- a/src/decomp/expr/block.c
+++ b/src/decomp/expr/block.c
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* block.c - regroupement d'un lot d'instructions
*
- * Copyright (C) 2010-2012 Cyrille Bagard
+ * Copyright (C) 2010-2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/decomp/expr/block.h b/src/decomp/expr/block.h
index 92ac9f9..a330088 100644
--- a/src/decomp/expr/block.h
+++ b/src/decomp/expr/block.h
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* block.h - prototypes pour le regroupement d'un lot d'instructions
*
- * Copyright (C) 2010 Cyrille Bagard
+ * Copyright (C) 2010-2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/decomp/expr/call.c b/src/decomp/expr/call.c
index 9aad9c0..8382b6d 100644
--- a/src/decomp/expr/call.c
+++ b/src/decomp/expr/call.c
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* call.c - encadrement des appels de routine
*
- * Copyright (C) 2010-2012 Cyrille Bagard
+ * Copyright (C) 2010-2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/decomp/expr/call.h b/src/decomp/expr/call.h
index 8856166..8a26017 100644
--- a/src/decomp/expr/call.h
+++ b/src/decomp/expr/call.h
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* call.h - prototypes pour l'encadrement des appels de routine
*
- * Copyright (C) 2010 Cyrille Bagard
+ * Copyright (C) 2010-2012 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/decomp/expr/comp.c b/src/decomp/expr/comp.c
index 3852aa8..d499d0d 100644
--- a/src/decomp/expr/comp.c
+++ b/src/decomp/expr/comp.c
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* comp.c - représentation des comparaisons
*
* Copyright (C) 2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/decomp/expr/comp.h b/src/decomp/expr/comp.h
index 8599aa0..04423a4 100644
--- a/src/decomp/expr/comp.h
+++ b/src/decomp/expr/comp.h
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* comp.h - prototypes pour la représentation des comparaisons
*
* Copyright (C) 2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/decomp/expr/cond.c b/src/decomp/expr/cond.c
index c776059..327fb4c 100644
--- a/src/decomp/expr/cond.c
+++ b/src/decomp/expr/cond.c
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* cond.c - représentation des conditions
*
* Copyright (C) 2010-2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/decomp/expr/cond.h b/src/decomp/expr/cond.h
index a4d1ee7..17ba596 100644
--- a/src/decomp/expr/cond.h
+++ b/src/decomp/expr/cond.h
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* cond.h - prototypes pour la représentation des conditions
*
* Copyright (C) 2010-2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/decomp/expr/dalvik/array.c b/src/decomp/expr/dalvik/array.c
index 55b9d07..018952a 100644
--- a/src/decomp/expr/dalvik/array.c
+++ b/src/decomp/expr/dalvik/array.c
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* array.c - manipulations de tableaux propres à Dalvik
*
* Copyright (C) 2010 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/decomp/expr/dalvik/array.h b/src/decomp/expr/dalvik/array.h
index 15670ab..af5ec72 100644
--- a/src/decomp/expr/dalvik/array.h
+++ b/src/decomp/expr/dalvik/array.h
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* array.h - prototypes pour les manipulations de tableaux propres à Dalvik
*
* Copyright (C) 2010 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/decomp/expr/immediate.c b/src/decomp/expr/immediate.c
index e0c6bd6..46c0dcc 100644
--- a/src/decomp/expr/immediate.c
+++ b/src/decomp/expr/immediate.c
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* immediate.c - raccord avec les opérandes de valeur immédiate
*
- * Copyright (C) 2010 Cyrille Bagard
+ * Copyright (C) 2010-2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/decomp/expr/immediate.h b/src/decomp/expr/immediate.h
index c86a15c..0dc3e2d 100644
--- a/src/decomp/expr/immediate.h
+++ b/src/decomp/expr/immediate.h
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* immediate.h - prototypes pour le raccord avec les opérandes de valeur immédiate
*
* Copyright (C) 2010 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/decomp/expr/pseudo.c b/src/decomp/expr/pseudo.c
index 7c7ba71..85a9e72 100644
--- a/src/decomp/expr/pseudo.c
+++ b/src/decomp/expr/pseudo.c
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* pseudo.c - définition des pseudo-registres
*
- * Copyright (C) 2010 Cyrille Bagard
+ * Copyright (C) 2010-2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/decomp/expr/pseudo.h b/src/decomp/expr/pseudo.h
index e7f3b00..d2d2cfe 100644
--- a/src/decomp/expr/pseudo.h
+++ b/src/decomp/expr/pseudo.h
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* pseudo.h - prototypes pour la définition des pseudo-registres
*
- * Copyright (C) 2010 Cyrille Bagard
+ * Copyright (C) 2010-2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/decomp/expr/return.c b/src/decomp/expr/return.c
index 65fd641..b61eb39 100644
--- a/src/decomp/expr/return.c
+++ b/src/decomp/expr/return.c
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* return.c - représentation des ordres de retour
*
- * Copyright (C) 2010 Cyrille Bagard
+ * Copyright (C) 2010-2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/decomp/expr/return.h b/src/decomp/expr/return.h
index 093ee32..613a738 100644
--- a/src/decomp/expr/return.h
+++ b/src/decomp/expr/return.h
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* return.h - prototypes pour la représentation des ordres de retour
*
* Copyright (C) 2010 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/decomp/expr/text.c b/src/decomp/expr/text.c
index 8fa7e34..9991b85 100644
--- a/src/decomp/expr/text.c
+++ b/src/decomp/expr/text.c
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* text.c - raccord avec les opérandes de chaînes de caractères
*
* Copyright (C) 2012 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/decomp/expr/text.h b/src/decomp/expr/text.h
index 9e6df28..29d03fa 100644
--- a/src/decomp/expr/text.h
+++ b/src/decomp/expr/text.h
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* text.h - prototypes pour le raccord avec les opérandes de chaînes de caractères
*
* Copyright (C) 2012 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/decomp/expression-int.h b/src/decomp/expression-int.h
index ba15ce3..71fdef1 100644
--- a/src/decomp/expression-int.h
+++ b/src/decomp/expression-int.h
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* expression-int.h - prototypes pour la définition interne des expressions décompilées
*
- * Copyright (C) 2010 Cyrille Bagard
+ * Copyright (C) 2010-2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/decomp/expression.c b/src/decomp/expression.c
index 783f78f..e8bdbd9 100644
--- a/src/decomp/expression.c
+++ b/src/decomp/expression.c
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* expression.c - gestion des expressions décompilées
*
* Copyright (C) 2010-2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/decomp/expression.h b/src/decomp/expression.h
index 01eaa66..bd8b6f5 100644
--- a/src/decomp/expression.h
+++ b/src/decomp/expression.h
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* expression.h - prototypes pour la gestion des expressions décompilées
*
* Copyright (C) 2010-2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/decomp/instr/ite.c b/src/decomp/instr/ite.c
index 5cdeb87..eedd7b4 100644
--- a/src/decomp/instr/ite.c
+++ b/src/decomp/instr/ite.c
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* ite.c - représentation des branchements conditionnels
*
* Copyright (C) 2010-2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/decomp/instr/ite.h b/src/decomp/instr/ite.h
index 91c18ae..91e0e82 100644
--- a/src/decomp/instr/ite.h
+++ b/src/decomp/instr/ite.h
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* ite.h - prototypes pour la représentation des branchements conditionnels
*
* Copyright (C) 2010-2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/decomp/instr/keyword.c b/src/decomp/instr/keyword.c
index eca1530..3ed12fb 100644
--- a/src/decomp/instr/keyword.c
+++ b/src/decomp/instr/keyword.c
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* keyword.c - insertions de mots clefs de haut niveau
*
* Copyright (C) 2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/decomp/instr/keyword.h b/src/decomp/instr/keyword.h
index 69d6901..5f33d30 100644
--- a/src/decomp/instr/keyword.h
+++ b/src/decomp/instr/keyword.h
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* keyword.h - prototypes pour les insertions de mots clefs de haut niveau
*
* Copyright (C) 2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/decomp/instr/switch.c b/src/decomp/instr/switch.c
index b475eae..a01c28c 100644
--- a/src/decomp/instr/switch.c
+++ b/src/decomp/instr/switch.c
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* switch.c - décodage des aiguillages multiples du flot d'exécution
*
* Copyright (C) 2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/decomp/instr/switch.h b/src/decomp/instr/switch.h
index fa00c3e..d37d531 100644
--- a/src/decomp/instr/switch.h
+++ b/src/decomp/instr/switch.h
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* switch.h - prototypes pour les aiguillages multiples du flot d'exécution
*
* Copyright (C) 2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/decomp/instruction-int.h b/src/decomp/instruction-int.h
index f0c503b..4396072 100644
--- a/src/decomp/instruction-int.h
+++ b/src/decomp/instruction-int.h
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* instruction-int.h - prototypes pour la définition interne des instructions décompilées
*
- * Copyright (C) 2010-2012 Cyrille Bagard
+ * Copyright (C) 2010-2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/decomp/instruction.c b/src/decomp/instruction.c
index 92388fc..758f9eb 100644
--- a/src/decomp/instruction.c
+++ b/src/decomp/instruction.c
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* instruction.c - gestion des instructions décompilées
*
- * Copyright (C) 2010-2012 Cyrille Bagard
+ * Copyright (C) 2010-2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/decomp/instruction.h b/src/decomp/instruction.h
index 3c8657b..2106bdc 100644
--- a/src/decomp/instruction.h
+++ b/src/decomp/instruction.h
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* instruction.h - prototypes pour la gestion des instructions décompilées
*
- * Copyright (C) 2010 Cyrille Bagard
+ * Copyright (C) 2010-2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/decomp/lang/asm.c b/src/decomp/lang/asm.c
index 1767706..bafef2e 100644
--- a/src/decomp/lang/asm.c
+++ b/src/decomp/lang/asm.c
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* asm.c - sorties en langage d'assemblage
*
* Copyright (C) 2010-2012 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/decomp/lang/asm.h b/src/decomp/lang/asm.h
index af96a46..da32c18 100644
--- a/src/decomp/lang/asm.h
+++ b/src/decomp/lang/asm.h
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* asm.h - prototypes pour les sorties en langage d'assemblage
*
* Copyright (C) 2010 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/decomp/lang/java.c b/src/decomp/lang/java.c
index 65383b0..d3db691 100644
--- a/src/decomp/lang/java.c
+++ b/src/decomp/lang/java.c
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* java.c - sorties en langage Java
*
* Copyright (C) 2010-2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/decomp/lang/java.h b/src/decomp/lang/java.h
index d1e0421..9e8cd5f 100644
--- a/src/decomp/lang/java.h
+++ b/src/decomp/lang/java.h
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* java.h - prototypes pour les sorties en langage Java
*
* Copyright (C) 2010 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/decomp/output-int.h b/src/decomp/output-int.h
index 95b891b..64cc204 100644
--- a/src/decomp/output-int.h
+++ b/src/decomp/output-int.h
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* output-int.h - définitions internes pour les sorties en langage de programmation
*
* Copyright (C) 2010-2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/decomp/output.c b/src/decomp/output.c
index c358653..16a4598 100644
--- a/src/decomp/output.c
+++ b/src/decomp/output.c
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* output.c - sorties en langage de programmation
*
* Copyright (C) 2010-2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/decomp/output.h b/src/decomp/output.h
index 63f586a..bd614ff 100644
--- a/src/decomp/output.h
+++ b/src/decomp/output.h
@@ -1,10 +1,10 @@
-/* OpenIDA - Outil d'analyse de fichiers binaires
+/* Chrysalide - Outil d'analyse de fichiers binaires
* output.h - prototypes pour les sorties en langage de programmation
*
- * Copyright (C) 2010 Cyrille Bagard
+ * Copyright (C) 2010-2013 Cyrille Bagard
*
- * This file is part of OpenIDA.
+ * This file is part of Chrysalide.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by