💾 Archived View for gmi.noulin.net › gitRepositories › simpleTemplates › file › simpleTemplatesTest.… captured on 2023-01-29 at 13:18:56. Gemini links have been rewritten to link to archived content

View Raw

More Information

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

simpleTemplates

Log

Files

Refs

LICENSE

simpleTemplatesTest.c (374B)

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