12 lines
108 B
C
12 lines
108 B
C
|
|
#ifndef THESTRUCT_H
|
|
#define THESTRUCT_H
|
|
|
|
struct TheStruct {
|
|
int a;
|
|
long b;
|
|
};
|
|
|
|
#endif /* THESTRUCT_H */
|
|
|