È una buona pratica (credo) in C per gestire errori come questo:
int status = tree_climb(tree, ...);
if (status != 0) {
global_logger.message(2, "Cannot climb a tree %s", tree->name);
return EPIPE;
}
o, in alternativa
forest_er...
posta
11.11.2016 - 19:01