Function: rng-c-expand-datatype

rng-c-expand-datatype is a byte-compiled function defined in rng-cmpct.el.gz.

Signature

(rng-c-expand-datatype PREFIXED-NAME)

Source Code

;; Defined in /usr/src/emacs/lisp/nxml/rng-cmpct.el.gz
(defun rng-c-expand-datatype (prefixed-name)
  (let ((i (string-search ":" prefixed-name)))
    (rng-make-datatype
     (rng-c-lookup-datatype-prefix (substring prefixed-name 0 i))
     (substring prefixed-name (+ i 1)))))