#ifndef _SK_RCOPY_H #define _SK_RCOPY_H /** * sk_rcopy_file: * copies a local file to a remote machine. * * @param src: the pathname to the local file. * @param target_host: the name of the remote machine. * @param dst: the pathname where to store the file on @target_host. * @return 0 on success, other value otherwise. */ int sk_rcopy_file( const char *restrict src, const char *restrict target_host, const char *restrict dst); #endif