Commit 0ed15cf929d7d5fd4ef3aa70ea6049b1d82a4e23

Compile with -Wall and -Werror
Makefile
(1 / 1)
  
1CFLAGS=-g -I../mymalloc # -DMYMALLOC
1CFLAGS=-g -Wall -Werror -I../mymalloc # -DMYMALLOC
22
33OBJS=strlists.o strhash.o
44
strhash.c
(0 / 1)
  
195195int strHashDeleteAll(strhash_t *ht, const char *key)
196196{
197197 int rv=0;
198 int deleted=0;
199198
200199 while(strHashDelete(ht, key) == 1) {
201200 rv++;