Use #define
instead of functions when possible
For example:
f(int i,char*s){/*do something with i and s*/;}
Using #define
can eliminate the argument list type, curly-braces and closing semicolon:
#define f(i,s)/*do something with i and s*/