summaryrefslogtreecommitdiffstats
path: root/src/util.h
blob: dbdb165edaa3b0cda802f710e57884f00af6a4d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef fooutilhfoo
#define fooutilhfoo

#include <db.h>

void statistics(DB *db);
char* normalize_path(char *s);
void rotdash(void);
const char* get_attached_filename(const char *path, const char *fn);
int isdirectory(const char *path);

#ifndef MIN
#define MIN(a,b) ((a)<(b)?(a):(b))
#endif

#endif