diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/alu.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/alu.h b/include/alu.h index 760de41..89328e7 100644 --- a/include/alu.h +++ b/include/alu.h @@ -2,6 +2,10 @@ #define __ALU_H__ #include "types.h" +typedef struct couple { + Uint32 deb, fin; +} couple; + Uint32 AdditionNonSigne(Uint32 a, Uint32 b); Uint32 AdditionSigne(Uint32 a, Uint32 b); Uint32 SoustractionNonSigne(Uint32 a, Uint32 b); |