diff options
| author | Pixel <> | 2001-04-17 06:55:02 +0000 |
|---|---|---|
| committer | Pixel <> | 2001-04-17 06:55:02 +0000 |
| commit | a7bc5cfa7399926941a3754e3cbdc671f24b4b3d (patch) | |
| tree | 6527baa45482798b61777cae9bf84eccb44075db /lib/hash.c | |
| parent | 502e0cd237a9a474b224ab9a741fe4d91ecdec36 (diff) | |
Pout
Diffstat (limited to 'lib/hash.c')
| -rw-r--r-- | lib/hash.c | 8 |
1 files changed, 2 insertions, 6 deletions
@@ -4,9 +4,7 @@ #include "hash.h" #include "exceptions.h" #include "config.h" -static char *CHAINEHACHAGE = - - "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_"; +static char *CHAINEHACHAGE = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_"; static int FonctionHachage(char *clef) { @@ -162,9 +160,7 @@ int Initialise(_TableauVariable * t) unsigned int i; - (*t) = - (_TableauVariable) Emalloc(sizeof(_ListeChaine) * - (strlen(CHAINEHACHAGE) + 1)); + (*t) = (_TableauVariable) Emalloc(sizeof(_ListeChaine) * (strlen(CHAINEHACHAGE) + 1)); for (i = 0; i <= strlen(CHAINEHACHAGE); i++) { (*t)[i] = NULL; } |
