(dirp)
| 32 | return li |
| 33 | |
| 34 | def _get_header_dir(dirp): |
| 35 | li = [] |
| 36 | for root, dirs, files in os.walk(dirp): |
| 37 | for d in dirs: |
| 38 | fpath = os.path.join(root, d) |
| 39 | li.extend(_get_header_dir(fpath)) |
| 40 | |
| 41 | for f in files: |
| 42 | if f[-2:] == '.h': |
| 43 | fpath = os.path.join(root, f) |
| 44 | li.append(os.path.normpath(fpath)) |
| 45 | return li |
| 46 | |
| 47 | def _get_header(project): |
| 48 | li = [] |
no test coverage detected