1Returns true if the specified path represents a C++ header file, based on its file extension.
2
3```lua
4path.iscppheader("path")
5```
6
7### Parameters ###
8
9`path` is the file system path to be tested.
10
11
12### Return Value ###
13
14True if the path matches a well-known C file extension, which currently includes `.h`, `.hh`, `.hpp`, and `.hxx`.
15
16
17### Availability ###
18
19Premake 5.0 or later.
20
21
22### See Also ###
23
24* [path.getextension](path.getextension.md)
25* [path.hasextension](path.hasextension.md)
26* [path.iscfile](path.iscfile.md)
27* [path.iscppfile](path.iscppfile.md)
28* [path.isframework](path.isframework.md)
29* [path.isobjectfile](path.isobjectfile.md)
30* [path.isresourcefile](path.isresourcefile.md)
31