On Thu, 7 Aug 2003, Evgeny Kotsuba wrote: > What is the reason that tools.c -> strwordtok() eats all '\' > characters ?
Because strwordtok splits strings into words according to UNIX "shell" syntax. The \ is a special escape character in such context. If you want a \ then you need to type \\, or use / as Guido said. Regards Henrik
