File: htip.h

package info (click to toggle)
librnd 4.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 12,812 kB
  • sloc: ansic: 126,990; sh: 2,602; makefile: 2,145; awk: 7
file content (12 lines) | stat: -rw-r--r-- 204 bytes parent folder | download | duplicates (14)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef GENHT_HTIP_H
#define GENHT_HTIP_H

typedef long int htip_key_t;
typedef void *htip_value_t;
#define HT(x) htip_ ## x
#include "ht.h"
#undef HT

int htip_keyeq(htip_key_t a, htip_key_t b);

#endif