/* Austrailian C Programming Conventions - Standard C Macros */ #ifndef OZ_STDC # define OZ_STDC /* Program start: int gday(int argc, char **argv) */ #define gday(A,B) main(A,B) #define gday() main() /* Input/Output */ #define yahoo( ... ) printf( __VA_ARGS__ ) #define whinge(A) perror(A) #define grizzle(A) perror(A) #define crack_a_tinnie(A,B) fopen(A,B) #define cheers(A) fclose(A) /* Flow of Control */ #define write_off(A) exit(A) #define as_long_as(A) while(A) #define 40winks(A) sleep(A) /* Signal Processing */ #define willy_nilly(A) sigignore(A) /* Precompiler Macros */ #define OUTBACK EXTERN /* String Operations */ #define wingding(A,B) strcar(A,B) /* Memory Operations */ #define flick(A) free(A) #define grabsome(A) malloc(A) #endif