module_00.c 201 B

123456789
  1. #include <stdio.h>
  2. #define UNUSED __attribute__((unused))
  3. int module_00_run(const char *filename UNUSED) {
  4. printf("\033[1;34m *** Complex of modules file analyzer ***\033[0m\n");
  5. return 0;
  6. }