]> arthur.barton.de Git - netatalk.git/blob - include/atalk/unix.h
use off_t rather than size_t for read/write_count, doesn't overflow at 4GB, yes movin...
[netatalk.git] / include / atalk / unix.h
1 /*
2    $Id: unix.h,v 1.1 2009-10-15 12:06:07 franklahm Exp $
3    Copyright (c) 2009 Frank Lahm <franklahm@gmail.com>
4
5    This program is free software; you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published by
7    the Free Software Foundation; either version 2 of the License, or
8    (at your option) any later version.
9  
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU General Public License for more details.
14 */
15
16 #ifndef ATALK_UNIX_H
17 #define ATALK_UNIX_H
18
19 #ifdef HAVE_CONFIG_H
20 #include <config.h>
21 #endif
22
23 #include <sys/types.h>
24
25 /* vfs/unix.c */
26 extern int netatalk_unlink(const char *name);
27 extern char *fullpathname(const char *);
28 extern int netatalk_rmdir(const char *name);
29 extern int setfilmode(const char *, mode_t, struct stat *, mode_t);
30 extern int dir_rx_set(mode_t mode);
31 extern int stickydirmode(const char *name, const mode_t mode, const int dropbox, const mode_t v_umask);
32 extern int unix_rename(const char *oldpath, const char *newpath);
33 extern int copy_file(const char *src, const char *dst, mode_t mode);
34
35 #endif  /* ATALK_UNIX_H */