#define S_IXROOT ( S_IXUSR | S_IXGRP | S_IXOTH )
-PHP_RINIT_FUNCTION(filestat)
+PHP_RINIT_FUNCTION(filestat) /* {{{ */
{
BG(CurrentStatFile)=NULL;
BG(CurrentLStatFile)=NULL;
return SUCCESS;
}
+/* }}} */
-PHP_RSHUTDOWN_FUNCTION(filestat)
+PHP_RSHUTDOWN_FUNCTION(filestat) /* {{{ */
{
if (BG(CurrentStatFile)) {
efree (BG(CurrentStatFile));
}
return SUCCESS;
}
+/* }}} */
/* {{{ proto float disk_total_space(string path)
Get total disk space for filesystem that path is on */
/* }}} */
#if !defined(WINDOWS)
-static void php_do_chgrp(INTERNAL_FUNCTION_PARAMETERS, int do_lchgrp)
+static void php_do_chgrp(INTERNAL_FUNCTION_PARAMETERS, int do_lchgrp) /* {{{ */
{
zval **filename, **group;
gid_t gid;
}
RETURN_TRUE;
}
+/* }}} */
#endif
#ifndef NETWARE
#endif
#if !defined(WINDOWS)
-static void php_do_chown(INTERNAL_FUNCTION_PARAMETERS, int do_lchown)
+static void php_do_chown(INTERNAL_FUNCTION_PARAMETERS, int do_lchown) /* {{{ */
{
zval **filename, **user;
int ret;
RETURN_FALSE;
}
}
+/* }}} */
#endif
#ifndef NETWARE