mirror of
https://github.com/lune-org/lune.git
synced 2025-04-03 18:10:54 +01:00
14 lines
222 B
C
Vendored
14 lines
222 B
C
Vendored
typedef struct {
|
|
int a;
|
|
int* b;
|
|
} ArgStruct;
|
|
|
|
typedef struct {
|
|
int sum;
|
|
int mul;
|
|
} ResultStruct;
|
|
|
|
ResultStruct AB(ArgStruct t) {
|
|
ResultStruct result = { t.a+ * t.b, t.a * (*t.b) };
|
|
return result;
|
|
}
|