From a7bc5cfa7399926941a3754e3cbdc671f24b4b3d Mon Sep 17 00:00:00 2001 From: Pixel <> Date: Tue, 17 Apr 2001 06:55:02 +0000 Subject: Pout --- lib/hash.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'lib/hash.c') diff --git a/lib/hash.c b/lib/hash.c index c0f5bc5..47f2961 100644 --- a/lib/hash.c +++ b/lib/hash.c @@ -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; } -- cgit v1.2.3