Skip to content
This repository has been archived by the owner on Jun 11, 2019. It is now read-only.

AntonMeep/derelict-libarchive

Repository files navigation

derelict-git2 Page on DUB License

A dynamic binding to libarchive for the D programming language.

Please see the sections on Compiling and Linking and The Derelict Loader in the Derelict documentation for information on how to build DerelictPQ and load libpq at run time. In the meantime, here's some sample code.

Example:

import derelict.libarchive;

void main() {
	DerelictLibArchive.load(); // Load libarchive

	// Now you can call libarchive functions
}

Check out ./examples directory for more examples.