Coding Style

This page will serve mostly to point out differences between our lab coding style and the Google style guides, which we'll take as our baseline. Following are the relevant guides that you should read through as necessary:

C

Certain pieces of code that are related to specific modules get their own files (module.c/h). Because of this, we digress from Google's function naming convention and add the module name in lowercase at the front of each of the functions within these modules. For example:

moduleRegularFunction(...)

Other than this addition at the front, we'll follow Google's way of naming regular functions.