Search Results

Found 1 results for "ff524da6df568d891dd44dd10ee5c375" across all boards searching md5.

Anonymous /g/105570523#105600967
6/15/2025, 4:00:10 PM
>>105600898
I'm so dumb thanks anon, to add another function is
typedef void (*none)();
typedef none (*func)();
typedef func (*next)();

void h()
{
exit(1);
}

none g()
{
return h;
}

func f()
{
return g;
}

next e()
{
return f;
}
at least it typechecks now