]> granicus.if.org Git - php/commitdiff
fix folding
authorAntony Dovgal <tony2001@php.net>
Mon, 26 Feb 2007 14:11:14 +0000 (14:11 +0000)
committerAntony Dovgal <tony2001@php.net>
Mon, 26 Feb 2007 14:11:14 +0000 (14:11 +0000)
ext/standard/filestat.c

index 68190ad27fde23f2c5945ab307224b9cc42a4a75..e8e282cf57c9f91eb99b902ecfa297e480f0338c 100644 (file)
 
 #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));
@@ -117,6 +118,7 @@ PHP_RSHUTDOWN_FUNCTION(filestat)
        }
        return SUCCESS;
 }
+/* }}} */
 
 /* {{{ proto float disk_total_space(string path) U
    Get total disk space for filesystem that path is on */
@@ -401,7 +403,7 @@ freespace_failure:
 /* }}} */
 
 #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) /* {{{ */
 {
        char *filename;
        int filename_len;
@@ -474,6 +476,7 @@ static void php_do_chgrp(INTERNAL_FUNCTION_PARAMETERS, int do_lchgrp)
        }
        RETURN_TRUE;
 }
+/* }}} */
 #endif
 
 #ifndef NETWARE
@@ -505,7 +508,7 @@ PHP_FUNCTION(lchgrp)
 #endif /* !NETWARE */
 
 #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) /* {{{ */
 {
        char *filename;
        int filename_len;
@@ -577,6 +580,7 @@ static void php_do_chown(INTERNAL_FUNCTION_PARAMETERS, int do_lchown)
                RETURN_FALSE;
        }
 }
+/* }}} */
 #endif
 
 #ifndef NETWARE