I've imported a C library into my Swift project (in Xcode) from Uber's H3 (their geospatial library). Everything works as expected, however, the main header file has a .in
file extension suffix which I had to truncate from h3api.h.in
to h3api.h
. I understand the .in
extension is for some kind of file configurator but all I'm doing is dragging and dropping the .c
and .h
files directly into my project without any sort of auto file generation.
Can I safely truncate the .in
file extension suffix of this main header file before importing into my project? Again, everything works as expected but are there any unintended side effects?
Here is the file in question: https://github.com/uber/h3/blob/master/src/h3lib/include/h3api.h.in