How to use a C library from D?

Viewed 4859

Today I heard about the D programming and that it is compatible to C code. Nevertheless I haven't found any information on whether it is possible to use C libraries like GTK or PortAudio from D? If it is possible, could you explain how to do this?

5 Answers

You need to write C bindings. This answer explain how.

Related