~ubuntu-branches/ubuntu/maverick/icoutils/maverick

« back to all changes in this revision

Viewing changes to common/hmap.c

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson
  • Date: 2005-05-26 15:15:36 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20050526151536-uzg8vlhedkx1nwcx
Tags: 0.25.0-1
* New upstream release.
  - 'make distclean' fixed; revert workarounds.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* hmap.c - A hash table (map datatype) implementation.
2
2
 *
3
 
 * Copyright (C) 2001  Oskar Liljeblad
4
 
 *
5
 
 * This file is part of the file renaming utilities (renameutils)
6
 
 * and regex-markup.
7
 
 *
8
 
 * This software is copyrighted work licensed under the terms of the
9
 
 * GNU General Public License. Please consult the file `COPYING' for
10
 
 * details.
 
3
 * Copyright (C) 1998-2005 Oskar Liljeblad
 
4
 *
 
5
 * This program is free software; you can redistribute it and/or modify
 
6
 * it under the terms of the GNU General Public License as published by
 
7
 * the Free Software Foundation; either version 2 of the License, or
 
8
 * (at your option) any later version.
 
9
 *
 
10
 * This program is distributed in the hope that it will be useful,
 
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 * GNU General Public License for more details.
 
14
 *
 
15
 * You should have received a copy of the GNU General Public License
 
16
 * along with this program; if not, write to the Free Software
 
17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
11
18
 */
12
19
 
 
20
#if HAVE_CONFIG_H
13
21
#include <config.h>
14
 
 
15
 
#include <sys/types.h>
16
 
#include <stdint.h>
17
 
#include <string.h>
18
 
#include <stdio.h>
19
 
#include "common.h"
20
 
#include "memory.h"
 
22
#endif
 
23
#include <sys/types.h>          /* POSIX */
 
24
#include <stdlib.h>             /* C89 */
 
25
#include <string.h>             /* C89 */
 
26
#include <stdio.h>              /* C89 */
 
27
#include "xalloc.h"             /* Gnulib */
21
28
#include "hmap.h"
22
29
#include "error.h"
 
30
#include "memory.h"
23
31
 
24
32
#define DEFAULT_CAPACITY                11
25
33
#define DEFAULT_LOAD_FACTOR             0.75F
339
347
                        if (last == NULL)
340
348
                                copy->buckets[i] = last = new_entry;
341
349
                        else
342
 
                                last->next = last;
 
350
                                last->next = new_entry;
343
351
                                last = new_entry;
344
352
                }
345
353
        }