Search Results
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
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
Page 1