strsep() not portable? (was: cvs commit: httpd-2.0/server config.c core.c request.c)

2004-07-14 Thread Jean-Jacques Clar
Index: core.c + char *w = strsep(p, ","); strsep() seems to be platform dependant. That functiondoes not exist on NetWare, and I don't think it exists on Windows. It should at least be made anAPRfunction. Here is the notes from the man page: The strsep() function was introduced as a

Re: strsep() not portable? (was: cvs commit: httpd-2.0/server config.c core.c request.c)

2004-07-14 Thread Andr Malo
* Jean-Jacques Clar [EMAIL PROTECTED] wrote: Index: core.c +char *w = strsep(p, ,); strsep() seems to be platform dependant. That function does not exist on NetWare, and I don't think it exists on Windows. It should at least be made an APR function. Uh, oh, right. There's