Getting back in to some C work.
Many of my functions look like this:
int err = do_something(arg1, arg2, arg3, &result);
With th
If error codes are boolean, then try the simpler code below:
return func1() && func2() && func3()