aboutsummaryrefslogtreecommitdiffstats
path: root/test/monniaux/cse2/loopload.c
blob: 6e0925f7c427e4c1f2c0bdee288014d0908add6b (plain)
1
2
3
4
5
int find_index(int *t, int n) {
  if (t[0] > 0) return 3;
  while (n > 0) n--;
  return t[0];
}