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 }