Path: utzoo!utgpu!jarvis.csri.toronto.edu!mailrus!iuvax!purdue!ames!elroy!usc!nunki.usc.edu!castor.usc.edu!jeenglis From: jeenglis@castor.usc.edu (Joe English) Newsgroups: comp.lang.c Subject: Re: Just Wondering Message-ID: <3615@nunki.usc.edu> Date: 26 Apr 89 01:35:31 GMT References: <2006@quanta.eng.ohio-state.edu> <12564@lanl.gov> Sender: news@nunki.usc.edu Reply-To: jeenglis@castor.usc.edu (Joe English) Distribution: na Organization: University of Southern California, Los Angeles, CA Lines: 29 jlg@lanl.gov (Jim Giles) writes: > >2) Since C distinguishes case, I can't use it to help the readability > of code by EMPHASIZING parts that I consider important. I don't get it... c = read(fd,buffer,count); /* read stuff from file */ c = READ(fd,buffer,count); /* be SURE to read stuff from file. Don't write or lseek, READ. */ c = read(FD,buffer,count); /* read from file FD. Not some other file descriptor, FD. */ c = read(fd,BUFFER,count); /* read stuff into BUFFER, and not somewhere else. */ I still don't get it. --Joe English jeenglis@nunki.usc.edu