diff options
| author | Cyrille Bagard <nocbos@gmail.com> | 2023-01-30 06:59:35 (GMT) | 
|---|---|---|
| committer | Cyrille Bagard <nocbos@gmail.com> | 2023-01-30 06:59:35 (GMT) | 
| commit | db3b204dd7a71b2f74a4e69b2159a96e3ab66614 (patch) | |
| tree | 34174311b7ac504f03a10a889ada7f28db7a06c0 /src/analysis/scan/exprs/relop-int.h | |
| parent | 34ee1bfca78e8423cfa29329fdc756569d6b1960 (diff) | |
Save an initial version of rost.
Diffstat (limited to 'src/analysis/scan/exprs/relop-int.h')
| -rw-r--r-- | src/analysis/scan/exprs/relop-int.h | 60 | 
1 files changed, 60 insertions, 0 deletions
diff --git a/src/analysis/scan/exprs/relop-int.h b/src/analysis/scan/exprs/relop-int.h new file mode 100644 index 0000000..273b543 --- /dev/null +++ b/src/analysis/scan/exprs/relop-int.h @@ -0,0 +1,60 @@ + +/* Chrysalide - Outil d'analyse de fichiers binaires + * relop-int.h - prototypes internes pour la gestion des opérations relationnelles + * + * Copyright (C) 2022 Cyrille Bagard + * + *  This file is part of Chrysalide. + * + *  Chrysalide is free software; you can redistribute it and/or modify + *  it under the terms of the GNU General Public License as published by + *  the Free Software Foundation; either version 3 of the License, or + *  (at your option) any later version. + * + *  Chrysalide is distributed in the hope that it will be useful, + *  but WITHOUT ANY WARRANTY; without even the implied warranty of + *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the + *  GNU General Public License for more details. + * + *  You should have received a copy of the GNU General Public License + *  along with Foobar.  If not, see <http://www.gnu.org/licenses/>. + */ + + +#ifndef _ANALYSIS_SCAN_EXPRS_RELOP_INT_H +#define _ANALYSIS_SCAN_EXPRS_RELOP_INT_H + + +#include "relop.h" + + +#include "../expr-int.h" + + + +/* Opération relationnelle impliquant deux opérandes (instance) */ +struct _GRelOperation +{ +    GScanExpression parent;                 /* A laisser en premier        */ + +    RichCmpOperation rel_type;              /* Type de relation étudiée    */ + +    GScanExpression *first;                 /* Expression impactée #1      */ +    GScanExpression *second;                /* Expression impactée #2      */ + +}; + +/* Opération relationnelle impliquant deux opérandes (classe) */ +struct _GRelOperationClass +{ +    GScanExpressionClass parent;            /* A laisser en premier        */ + +}; + + +/* Met en place une opération relationnelle entre expressions. */ +bool g_relational_operation_create(GRelOperation *, RichCmpOperation, GScanExpression *, GScanExpression *); + + + +#endif  /* _ANALYSIS_SCAN_EXPRS_RELOP_INT_H */  | 
