Count how many characters at the start of the input stream are members of some particular character set.
We just leave this enabled.
Function:
(defun strin-count-charset (set x) (declare (xargs :guard (and (charset-p set) (strin-p x)))) (let ((__function__ 'strin-count-charset)) (declare (ignorable __function__)) (count-leading-charset (strin-left x) set)))