Date: Wed, 18 Sep 1996 17:51:50 +0200 (IST) From: Eli Zaretskii To: Yamaha / XYZZ Cc: djgpp AT delorie DOT com Subject: Re: Wildcards and Floating-point In-Reply-To: <323F9B17.1EBF@CS.ColoState.EDU> Message-Id: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII On Wed, 18 Sep 1996, Yamaha / XYZZ wrote: > Is there a way to use DJGPP's wildcard expansion from within the > program? (in other words, use it in places other than the startup code) The wildcard expansion just calls a bunch of library functions (the most important is `glob'), so you can do the same in the application. (If you want to glob the command-line arguments, you should disable the globbing by the startup code, so you get in argv[] the original command line as passed by DOS.) > And how do I use floating-point emulation? It is transparent. If the machine doesn't have an FPU, the emulator is loaded at run time automatically. For more details, read Chapter 11 of the DJGPP FAQ list (available as v2/faq201b.zip from the same place you get DJGPP).