mirror of
https://review.haiku-os.org/buildtools
synced 2025-02-19 04:07:46 +01:00
11 lines
192 B
C
11 lines
192 B
C
{
|
|
for (int c0 = 1; c0 <= n; c0 += 1) {
|
|
S1(c0, c0);
|
|
for (int c1 = c0; c1 <= n; c1 += 1)
|
|
S2(c0, c1);
|
|
S3(c0, n);
|
|
}
|
|
for (int c0 = n + 1; c0 <= m; c0 += 1)
|
|
S3(c0, n);
|
|
}
|