In elisp I have a time in the (form of three integers), and I can get the month using decode-time. What I'd like to get is the number of days in that month (and year), using elisp functions (rather than write my own).
i.e:
(defun days-in-month-at-time(t)
; Figure out month and year with decode-time
; return number of days in that month
)