From 3bc3ad24a2c089b4ee80fc1765fab3d2af378d00 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Tue, 26 Aug 2003 21:43:31 +0000 Subject: Initial commit git-svn-id: file:///home/lennart/svn/public/syrep/trunk@2 07ea20a6-d2c5-0310-9e02-9ef735347d72 --- src/util.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/util.h (limited to 'src/util.h') diff --git a/src/util.h b/src/util.h new file mode 100644 index 0000000..dbdb165 --- /dev/null +++ b/src/util.h @@ -0,0 +1,16 @@ +#ifndef fooutilhfoo +#define fooutilhfoo + +#include + +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 -- cgit