diff options
Diffstat (limited to 'include/hash.h')
-rw-r--r-- | include/hash.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/hash.h b/include/hash.h index a7948a1..2cc759c 100644 --- a/include/hash.h +++ b/include/hash.h @@ -10,13 +10,13 @@ typedef int _TypeVariable; #endif typedef struct { - char *NomVar; - _TypeVariable Variable; + char *NomVar; + _TypeVariable Variable; } _Element; typedef struct _LstChn { - _Element Elem; - struct _LstChn *Suivant; + _Element Elem; + struct _LstChn *Suivant; } *_ListeChaine; typedef _ListeChaine *_TableauVariable; |