lib.c 90 B

12345678
  1. #include "lib.h"
  2. #include <stdio.h>
  3. void hello(void)
  4. {
  5. printf("Hello, C-world!\n");
  6. }