URL encode a single character. (fast, array-based version)
(fast-url-encode-char x) → *
Function:
(defun fast-url-encode-char$inline (x) (declare (type character x)) (let ((acl2::__function__ 'fast-url-encode-char)) (declare (ignorable acl2::__function__)) (mbe :logic (url-encode-char x) :exec (aref1 'url-encode-array *url-encode-array* (char-code x)))))