Date: Tue, 14 Jul 1998 10:11:43 +0300 (IDT) From: Eli Zaretskii To: Laurence Withers cc: djgpp AT delorie DOT com Subject: Re: Portable way to examine a directory? In-Reply-To: <6PhjzCA3Nfq1Ewqw@lwithers.demon.co.uk> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Precedence: bulk On Mon, 13 Jul 1998, Laurence Withers wrote: > OK, so I'm now using opendir() and readdir() successfully, as well as > fnmatch(). But is fnmatch() going to be included in DOS and Linux > compilers? `fnmatch' is Posix, so Linux (and any other modern Unix variant) has it. DOS compilers might not have it, but since DJGPP's library is free, you could just get the DJGPP source of `fnmatch' and use it in your program, for those DOS compilers which don't support it.