More to come...
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

21 lignes
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. }