Path: utzoo!news-server.csri.toronto.edu!cs.utexas.edu!samsung!munnari.oz.au!brolga!bunyip.cc.uq.oz.au!marlin.jcu.edu.au!cpmwc From: cpmwc@marlin.jcu.edu.au (Matt Crowd) Newsgroups: comp.sys.amiga.misc Subject: Re: How does one get * and ? (arp wildcards) in 2.0??? Keywords: * ? Message-ID: <1991Mar17.014929.1270@marlin.jcu.edu.au> Date: 17 Mar 91 01:49:29 GMT References: <16680@chopin.udel.edu> Organization: James Cook University of North Queensland Lines: 37 In article <16680@chopin.udel.edu> jeremym@chopin.udel.edu (Jeremy A Moskowitz) writes: >How does one get * and ? in 2.0??? (kinda reminiscient of the title, eh?) > >E Pluribus // Contacts: jeremym@brahms.udel.edu or jeremym@chopin.udel.edu or The program you run to set the flag for * wildcars is at ab20.larc.nasa.gov in the incoming/amiga dir., it's called starburst.lzh. In case you can't get to it, here is the code - /** starburst.c * * Toggles the bit that controls whether asterisk wildcards are allowed * or not. Thanks to Randall jesup! * * W.G.J. Langeveld, July 1990. * **/ #include #include #include struct DosLibrary *lib, *OpenLibrary(); main() { lib = OpenLibrary("dos.library", 0L); ((struct RootNode *) (lib->dl_Root))->rn_Flags ^= 0x01000000; CloseLibrary(lib); exit(0); } matt crowd.