Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!sdd.hp.com!uakari.primate.wisc.edu!pikes!aspen.craycos.com!pmk From: pmk@craycos.com (Peter Klausler) Newsgroups: comp.lang.c Subject: Re: Argument declaration style (Was: ANSI C prototypes) Message-ID: <1990Nov7.181615.11154@craycos.com> Date: 7 Nov 90 18:20:51 GMT References: <930@demott.COM> Organization: Cray Computer Corporation Lines: 16 In article <930@demott.COM> kdq@demott.COM (Kevin D. Quitt) writes: > We like the ANSI prototypes, and for ease of search/grep, we use the >style: > >void foo ( int x, int y ) > > This way the only occurance of the function name followed by space parens >is the declaration. I also like ANSI prototypes, but use this style: void foo (int x, int y) { } so that the function name always appears in column 1.