#include "List.h" int length(List L) { if(L==NULL) return 0; else return 1+length(L->tl); } /* Length of a List L (recursive) */