Date: Mon, 23 Dec 1996 13:17:50 +0200 (IST) From: Eli Zaretskii To: Elliott Oti cc: djgpp AT delorie DOT com Subject: Re: New C Programmer Problem In-Reply-To: <32BE2A52.7D87@stud.warande.ruu.nl> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII On Sun, 22 Dec 1996, Elliott Oti wrote: > It makes a difference in C whether you use caps or small type. > C compilers are type-sensitive. > STDIO.H is not the same as stdio.h. The compiler only recognizes > stdio.h, NOT StdIo.h or stdio.H or STDIO.h or whatever. This is incorrect. The compiler is indeed case-sensitive, but it uses DOS file I/O to open and read the include files, and DOS will happily let you open `stdio.h' no matter what case do you use. Even Windows 95 (which preserves filename letter-case, but is still case-insensitive) will let you use either case.