// after
int32_t calculate_value(int32_t num)
{
    return num * 2;
}

int32_t calculate_sum(int32_t a, int32_t b)
{
    return a + b;
}
