libsheepy

C lib for handling text files, strings and json like data structure with an object oriented system
git clone https://spartatek.se/git/libsheepy.git
Log | Files | Refs | README | LICENSE

template.c (185B)


      1 //
      2 
      3 #include "../release/libsheepyObject.h"
      4 
      5 int argc; char **argv;
      6 
      7 int main(int ARGC, char** ARGV) {
      8 
      9   argc = ARGC; argv = ARGV;
     10 
     11   initLibsheepy(argv[0]);
     12 
     13   puts("C template");
     14 
     15 }