* added an 'ignore_zero' argument to Unify_unify()
authorEnrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
Thu, 17 Mar 2005 14:53:06 +0000 (14:53 +0000)
committerEnrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
Thu, 17 Mar 2005 14:53:06 +0000 (14:53 +0000)
* Unify_isIUnlinkable(): added

git-svn-id: http://svn.linux-vserver.org/svn/util-vserver/trunk@1898 94cd875c-1c1d-0410-91d2-eb244daf1a30

util-vserver/lib_internal/unify.h

index 8732b30..30d8e3b 100644 (file)
@@ -25,7 +25,7 @@ struct stat;
 
 bool
 Unify_unify(char const *src, struct stat const *src_stat,
-           char const *dst) NONNULL((1,2,3));
+           char const *dst, bool ignore_zero) NONNULL((1,2,3));
 
 bool
 Unify_copy(char const *src, struct stat const *src_stat,
@@ -37,6 +37,8 @@ Unify_deUnify(char const *dst) NONNULL((1));
 bool
 Unify_setTime(char const *dst, struct stat const *stat) NONNULL((1,2));
 
+bool
+Unify_isIUnlinkable(char const *filename) NONNULL((1));
 
 #define        Unify_isUnified(LHS, RHS)               \
   ((bool)((LHS)->st_dev ==(RHS)->st_dev  &&    \