blob: 41ab39da5a6692d2b7176631542f9225a3f87dfe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace HandBrake.Interop
{
public static class Utilities
{
public static int GreatestCommonFactor(int a, int b)
{
if (a == 0)
{
return b;
}
if (b == 0)
{
return a;
}
if (a > b)
{
return GreatestCommonFactor(a % b, b);
}
else
{
return GreatestCommonFactor(a, b % a);
}
}
}
}
|