blob: 7e9ee43115435de294de96c28408c42d04f8c712 (
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
|
namespace HandBrake.Interop
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
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);
}
}
}
}
|