Date: Sun, 26 Jul 1998 12:28:52 +0300 (IDT) From: Eli Zaretskii To: Emad Boctor cc: djgpp AT delorie DOT com Subject: Re: Does any body know about ftw() in djgpp? In-Reply-To: <35BA89AC.31D77C6B@interlog.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Precedence: bulk On Sat, 25 Jul 1998, Emad Boctor wrote: > I have a very useful piece of code that was written in DJGPP. It > contains a function called ftw() which I think traverses a directory > tree. Does anyone have any documentation on this? `ftw' is fully documented in the DJGPP library reference. From the DOS prompt, type "info libc alpha ftw" and read there. > Is there an equivalent function in Borland C++ or VC++? To the best of my knowledge, neither of these two support `ftw'. `ftw' is included for compatibility with Unix compilers. However, since the sources of DJGPP's library are free, you could just download djlsr201.zip and compile the sources of `ftw' with any other compiler.