Skip to content

Instantly share code, notes, and snippets.

@dodikk
Created December 25, 2013 11:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dodikk/8122310 to your computer and use it in GitHub Desktop.
Save dodikk/8122310 to your computer and use it in GitHub Desktop.
Apple MAX() macro fun
#if !defined(MAX)
#define MAX(A,B) ((A) > (B) ? (A) : (B))
#endif
@dodikk
Copy link
Author

dodikk commented Dec 25, 2013

And this is a Skype render

Skype Render

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment