7 lines
99 B
C
7 lines
99 B
C
#include <stdio.h>
|
|
#include "hello.h"
|
|
|
|
void print_line(const char* str) {
|
|
printf("%s\n", str);
|
|
}
|