summaryrefslogtreecommitdiffstats
path: root/uidmap.h
blob: a126e39967d6e432c44189ed1254e9507f29f99b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef _UIDMAP_H_
#define _UIDMAP_H_

#include <stdint.h>

struct string;

uint32_t uidmap_getNumberForName(const struct string *name);

const struct string *uidmap_getNameForNumber(const uint32_t number);

void uidmap_init(const char *fileName);

void uidmap_cleanupSave();

#endif