summaryrefslogtreecommitdiffstats
path: root/src/util.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2003-08-28 00:26:05 +0000
committerLennart Poettering <lennart@poettering.net>2003-08-28 00:26:05 +0000
commit98f36517251b5bccdb80d90d698c173c18ee4a29 (patch)
treebdcbb19a48d0f4fb06c96fb7376cf5b549539e68 /src/util.h
parent7ea422bfaf6c9d22346cd415fd6b97712322fd81 (diff)
implemented merging an patch making
git-svn-id: file:///home/lennart/svn/public/syrep/trunk@9 07ea20a6-d2c5-0310-9e02-9ef735347d72
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/util.h b/src/util.h
index dbdb165..2460ab9 100644
--- a/src/util.h
+++ b/src/util.h
@@ -2,12 +2,16 @@
#define fooutilhfoo
#include <db.h>
+#include <stdint.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);
+int copy_fd(int sfd, int dfd, uint32_t l);
+int copy_file(const char *src, const char *dst);
+int copy_or_link_file(const char *src, const char *dst);
#ifndef MIN
#define MIN(a,b) ((a)<(b)?(a):(b))