Function: ede-cpp-root-header-file-p

ede-cpp-root-header-file-p is a byte-compiled function defined in cpp-root.el.gz.

Signature

(ede-cpp-root-header-file-p ARG &rest ARGS)

Implementations

(ede-cpp-root-header-file-p (PROJ ede-cpp-root-project) NAME) in `ede/cpp-root.el'.

Non-nil if in PROJ the filename NAME is a header.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/ede/cpp-root.el.gz
;;; C/CPP SPECIFIC CODE
;;
;; The following code is specific to setting up header files,
;; include lists, and Preprocessor symbol tables.

(cl-defmethod ede-cpp-root-header-file-p ((proj ede-cpp-root-project) name)
  "Non-nil if in PROJ the filename NAME is a header."
  (save-match-data
    (string-match (oref proj header-match-regexp) name)))