summaryrefslogtreecommitdiff
path: root/src/decomp/expr
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/expr
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/expr')
-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
26 files changed, 66 insertions, 66 deletions
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