/* test using the trivial Loader */ #include #include #include "lodestone.h" #include "echoBackend.h" #include "createLoader.h" int main(int argc, char *argv[]) { lsInterface *ls = echoGetLSInterface(); FILE *f; createLoaderInit(ls); if(argc > 1) { f = fopen(argv[1], "r"); } else f = NULL; createLoad(f); return 0; }