tuyau

Client/server for transfering files (like cp)
git clone https://noulin.net/git/tuyau.git
Log | Files | Refs | README

tuyau.c (528B)


      1 #! /usr/bin/env sheepy
      2 /* or direct path to sheepy: #! /usr/local/bin/sheepy */
      3 
      4 /* Libsheepy documentation: https://spartatek.se/libsheepy/ */
      5 #include "libsheepyObject.h"
      6 
      7 int argc; char **argv;
      8 
      9 /* enable/disable logging */
     10 /* #undef pLog */
     11 /* #define pLog(...) */
     12 
     13 int main(int ARGC, char** ARGV) {
     14 
     15   argc = ARGC; argv = ARGV;
     16 
     17   initLibsheepy(ARGV[0]);
     18   setLogMode(LOG_VERBOSE);
     19   //openProgLogFile();
     20   //setLogSymbols(LOG_UTF8);
     21   //disableLibsheepyErrorLogs;
     22 
     23   logI("C template");
     24 
     25 }
     26 // vim: set expandtab ts=2 sw=2: