1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-25 20:23:07 +03:00
Files
postgres/contrib/tsearch2/snmap.h
Teodor Sigaev b88605337e tsearch2 module
2003-07-21 10:27:44 +00:00

24 lines
414 B
C

#ifndef __SNMAP_H__
#define __SNMAP_H__
#include "postgres.h"
typedef struct {
char *key;
Oid value;
} SNMapEntry;
typedef struct {
int len;
int reallen;
SNMapEntry *list;
} SNMap;
void addSNMap( SNMap *map, char *key, Oid value );
void addSNMap_t( SNMap *map, text *key, Oid value );
Oid findSNMap( SNMap *map, char *key );
Oid findSNMap_t( SNMap *map, text *key );
void freeSNMap( SNMap *map );
#endif