This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Package librclone exports shims for C library use | |
// | |
// This directory contains code to build rclone as a C library and the | |
// shims for accessing rclone from C. | |
// | |
// The shims are a thin wrapper over the rclone RPC. | |
// | |
// Build a shared library like this: | |
// | |
// go build --buildmode=c-shared -o librclone.so github.com/rclone/rclone/librclone |