7 lines
108 B
C
7 lines
108 B
C
|
#include "greeter.h"
|
||
|
#include <stdio.h>
|
||
|
|
||
|
void greet(const char* name) {
|
||
|
printf("Hello, %s.\n", name);
|
||
|
}
|