module_30.c 258 B

1234567891011
  1. #include <stdio.h>
  2. #define BOLD_GRAY "\033[1;90m"
  3. #define WHITE "\033[0;37m"
  4. #define RESET "\033[0m"
  5. int module_30_run(const char *filename) {
  6. printf(BOLD_GRAY " Library string_printer: " WHITE "Input string: %s" RESET "\n", filename);
  7. return 0;
  8. }