~ubuntu-branches/ubuntu/jaunty/renameutils/jaunty

« back to all changes in this revision

Viewing changes to src/common/hmap.h

  • Committer: Bazaar Package Importer
  • Author(s): Francois Marier
  • Date: 2008-09-22 14:20:36 UTC
  • mfrom: (0.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20080922142036-albfymqznqp52loj
Tags: 0.10.0-1
* New upstream release
* Bump Standards-Version up to 3.8.0 (no changes) 
* Move collab-maint repo to git

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* hmap.h - A hash map data structure
2
2
 *
3
 
 * Copyright (C) 2004, 2005, 2007  Oskar Liljeblad
 
3
 * Copyright (C) 2004, 2005, 2007, 2008 Oskar Liljeblad
4
4
 *
5
5
 * This program is free software; you can redistribute it and/or modify
6
6
 * it under the terms of the GNU General Public License as published by
20
20
#ifndef COMMON_HMAP_H
21
21
#define COMMON_HMAP_H
22
22
 
23
 
#include <stdbool.h>
24
 
#include <stdint.h>
25
 
#include <stdlib.h>
26
 
#include "comparison.h"
 
23
#include <stdbool.h>            /* Gnulib/C99/POSIX */
 
24
#include <stdint.h>             /* Gnulib/C99/POSIX */
 
25
#include <stdlib.h>             /* Gnulib/C89 */
 
26
#include "comparison.h"         /* common */
27
27
 
28
28
typedef struct _HMap HMap;
29
29
typedef struct _HMapIterator HMapIterator;