Path: utzoo!utgpu!utstat!jarvis.csri.toronto.edu!mailrus!ames!ucsd!sdcsvax!ucsdhub!sdsu!roetzhei From: roetzhei@sdsu.UUCP (William Roetzheim) Newsgroups: comp.lang.c Subject: Re: where do you put prototype declarations? Message-ID: <3449@sdsu.UUCP> Date: 31 Jan 89 22:03:47 GMT References: <584@mccc.UUCP> Reply-To: roetzhei@sdsu.UCSD.EDU (William Roetzheim) Organization: San Diego State University, Math/Sciences Dept. Lines: 9 I may be the only one, but I like to put all of my function prototypes in one include file which contains only function prototypes. This simplifies separate compilation and testing and provides me with a ready index of the program's functions (and their parameters). Because my programs typically have many functions (hundreds), I keep the prototypes in alphabetical order within the file. WHR