Esempio n. 1
0
void				ft_itoa_write(char *last_digit, uintmax_t number)
{
	if (number == 0)
		*last_digit = '0';
	else
		write_digits(last_digit, number);
}
void ComputeIntSession<wtype>::run(){
    setup();
    print_header();
    ensure_tables();

    start_time = Time::WallClock::Now();
    watch.Start();
    BigIntO<wtype> x = compute();
    watch.Stop();
    Console::println();

    write_digits(x, name_short, algorithm_short);
    print_stats();
}