8 lines
136 B
C
8 lines
136 B
C
#ifndef INTRO_H
|
|
#define INTRO_H
|
|
|
|
int compute(int input, int (*executor)(int));
|
|
void (*greet(char *name))(void);
|
|
|
|
#endif /* ! INTRO_H */
|