summaryrefslogtreecommitdiff
path: root/maintenance/counter.php
blob: d84c877d8c8d016a3308f54709210d07889833fa (plain)
1
2
3
4
5
<?php
function print_c($last, $current) {
	echo str_repeat( chr(8), strlen( $last ) ) . $current;
}
?>