1
0
mirror of https://github.com/gilbertchen/duplicacy synced 2025-12-14 23:33:18 +00:00

Merge pull request #196 from fracai/more-check-stats

print additional, table-formatted stats for CHECK
This commit is contained in:
gilbertchen
2017-09-20 17:16:23 -04:00
committed by GitHub
3 changed files with 137 additions and 34 deletions

View File

@@ -450,3 +450,10 @@ func AtoSize(sizeString string) (int) {
return size
}
func MinInt(x, y int) (int) {
if x < y {
return x
}
return y
}