#include <stdio.h>
#include <stdlib.h>
#define TEST_CONSTANT 42
typedef struct {
int value;
char* name;
} TestStruct;
int test_function(int x, int y);
int test_function(int x, int y) {
return x + y;
}
#define MAX(a, b) ((a) > (b) ? (a) : (b))
static int global_value = 0;
int main(void) {
TestStruct s = { .value = 10, .name = "test" };
printf("Value: %d\n", test_function(s.value, TEST_CONSTANT));
return 0;
}