Re: [PHP-DEV] dirname() implementation question

2001-04-28 Thread Andi Gutmans
At 02:42 PM 4/28/2001 -0400, Sean R. Bright wrote: What was the thinking behind this bit of code from dirname() (ext/standard/string.c:799): PHPAPI void php_dirname(char *path, int len) { ... /* Strip trailing slashes */ --- This? while (end = path IS_SLASH(*end)) {

RE: [PHP-DEV] dirname() implementation question

2001-04-28 Thread Sean R. Bright
: Saturday, April 28, 2001 5:02 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re: [PHP-DEV] dirname() implementation question At 02:42 PM 4/28/2001 -0400, Sean R. Bright wrote: What was the thinking behind this bit of code from dirname() (ext/standard/string.c:799): PHPAPI void