summaryrefslogtreecommitdiff
path: root/src/mastur.c
blob: 7826b058c404f77560a8f055163c6431e9503277 (plain)
1
2
3
4
5
6
7
static const int A[] = {0, 1, -1};
static const int C[][3] = {{1, 1, -2}, {1, 1, -2}, {-2, 1, 1}};

int mastur(const int i, const int x, const int y)
{
	return i + A[x] * C[x][i / y % 3] * y;
}