💾 Archived View for gmi.noulin.net › gitRepositories › forb › file › shpPackages › simpleTemplates ›… captured on 2024-08-18 at 18:01:43. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2023-01-29)

-=-=-=-=-=-=-

forb

Log

Files

Refs

README

LICENSE

file.txt (380B)

     1 test
     2 
     3 #! /usr/bin/env sheepy
     4 
     5 #include "libsheepyObject.h"
     6 #include "simpleTemplates.h"
     7 
     8 int argc; char **argv;
     9 
    10 int main(int ARGC, char** ARGV) {
    11 
    12   argc = ARGC; argv = ARGV;
    13 
    14   initLibsheepy(argv[0]);
    15 
    16   createAllocateSmallDict(d);
    17 
    18   setG(d, "_INSERT_FILE_", "simpleTemplatesTest.c");
    19 
    20   simpleTemplatesInsertFiles("templateFile.txt","file.txt", d);
    21 
    22   finalizeLibsheepy();
    23 
    24 }