| 77 | } |
| 78 | |
| 79 | int main(int argc, char** argv) { |
| 80 | if (argc < 2) { |
| 81 | printf("usage: lite_c_examples <model file> , just test C interface " |
| 82 | "build.\n"); |
| 83 | return -1; |
| 84 | } |
| 85 | return basic_c_interface(argv[1]); |
| 86 | } |
| 87 | |
| 88 | // vim: syntax=cpp.doxygen foldmethod=marker foldmarker=f{{{,f}}} |
nothing calls this directly
no test coverage detected