Cheat Sheets

A collection of cheat sheets.

Hosted on GitHub Pages — Theme by mattgraham

Preprocessor

Include Guards

#ifndef FILE_H
#define FILE_H

...

#endif

Macros

#define ASSERT(c) if (!c) abort();