sbool listStartsWithCI(LS a, LS b) { int n = l(b); if (l(a) < n) false; for i to n: if (!eqic(a.get(i), b.get(i))) false; true; }