💾 Archived View for gmi.noulin.net › gitRepositories › forb › file › shpPackages › preprocessor › pr… captured on 2024-08-18 at 18:01:32. 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

preprocessorTest.c (334B)

     1 #! /usr/bin/env sheepy
     2 
     3 #include "libsheepyObject.h"
     4 #include "preprocessor.h"
     5 
     6 int main(int ARGC, char** ARGV) {
     7 
     8   smallArrayt *a;
     9   puts(BLD WHT "pp.txt" RST);
    10   a = preprocess("pp.txt");
    11   logG(a);
    12   terminateG(a);
    13 
    14   puts(BLD WHT "ppCommentConfig.txt" RST);
    15   a = preprocess("ppCommentConfig.txt");
    16   logG(a);
    17   terminateG(a);
    18 }