Ver originalvoid segsToHMS(const unsigned int sgs, int& h, int& m, int& s) { h = sgs / 3600; m = sgs % 3600 / 60; s = sgs % 3600 % 60;}