8 lines
96 B
C
8 lines
96 B
C
#ifndef PLAIN_H
|
|
#define PLAIN_H
|
|
|
|
int add(int a, int b);
|
|
struct Point { int x; int y; };
|
|
|
|
#endif
|