cvs: ZendEngine2(PHP_5_3) / zend_compile.c
[email protected] ("Stanislav Malyshev")
| Newsgroups | php.zend-engine.cvs |
|---|---|
| Message-ID | <cvsstas1202779068@cvsserver> |
stas Tue Feb 12 01:17:48 2008 UTC
Modified files: (Branch: PHP_5_3)
/ZendEngine2 zend_compile.c
Log:
fix folding
http://cvs.php.net/viewvc.cgi/ZendEngine2/zend_compile.c?r1=1.647.2.27.2.41.2.40&r2=1.647.2.27.2.41.2.41&diff_format=u
Index: ZendEngine2/zend_compile.c
diff -u ZendEngine2/zend_compile.c:1.647.2.27.2.41.2.40 ZendEngine2/zend_compile.c:1.647.2.27.2.41.2.41
--- ZendEngine2/zend_compile.c:1.647.2.27.2.41.2.40 Tue Feb 12 00:20:32 2008
+++ ZendEngine2/zend_compile.c Tue Feb 12 01:17:48 2008
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: zend_compile.c,v 1.647.2.27.2.41.2.40 2008/02/12 00:20:32 stas Exp $ */
+/* $Id: zend_compile.c,v 1.647.2.27.2.41.2.41 2008/02/12 01:17:48 stas Exp $ */
#include <zend_language_parser.h>
#include "zend.h"
@@ -4945,6 +4945,8 @@
}
/* }}} */
+/* {{{ zend_dirname
+ Returns directory name component of path */
ZEND_API size_t zend_dirname(char *path, size_t len)
{
register char *end = path + len - 1;
@@ -5036,6 +5038,7 @@
return (size_t)(end + 1 - path) + len_adjust;
}
/* }}} */
+
/*
* Local variables:
* tab-width: 4