12 lines
161 B
C
12 lines
161 B
C
|
#ifndef GREETER_H
|
||
|
#define GREETER_H
|
||
|
|
||
|
/**
|
||
|
* Begrüßt jemanden.
|
||
|
*
|
||
|
* @param name Name der Person, die begrüßt wird.
|
||
|
*/
|
||
|
void greet(const char* name);
|
||
|
|
||
|
#endif
|