Mehdi Khaldi wrote:
Can I include files .h with "include" keyword in a pascal program?
You can include files with
{$include "foo.pas"}
or
{$i foo.pas}
How does gpc process this keyword?
But, just like in C, this just includes the file contents, so it won't work with C headers, but only with Pascal include files (which usually aren't called .h).
Frank