Hi All,<div><br></div><div>    one C coding convention I think is extremely useful for finding definitions is to always put the name of a function (not its forward declaration but its definition) on a newline, so that instead of writing e.g</div>
<div><br></div><div><div>static void recordKeyboardEventCarbon(EventRef event) {</div></div><div><br></div><div>you write</div><div><br></div><div><div>static void</div><div>recordKeyboardEventCarbon(EventRef event) {</div>
</div><div><br></div><div>This makes it really easy to find the sole definition in text editors and using grep etc.</div><div><br></div><div>If people feel they could live with this convention could I be allowed to make this change throughout the platform code base after code freeze and before the release so that this convention will be available to us all in the future?</div>
<div><br></div><div>best</div><div>Eliot</div>