More to come...
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

21 lines
471B

  1. #include "../chapter/chapter_0.c"
  2. static void cool_echo (char * text, int colour, int effect);
  3. static void heyo (void) { cool_echo ("Heyo world!\n", COLOUR_GREEN, EFFECT_BOLD); }
  4. static void cyaa (void) { cool_echo ("Cyaa world!\n", COLOUR_RED, EFFECT_BOLD); }
  5. int main (void) {
  6. heyo ();
  7. cyaa ();
  8. return (EXIT_SUCCESS);
  9. }
  10. void cool_echo (char * text, int colour, int effect) {
  11. terminal_colour (colour, effect);
  12. echo (text);
  13. terminal_cancel ();
  14. }