| 73 | } |
| 74 | |
| 75 | static int |
| 76 | command(int argc, char *argv[]) |
| 77 | { |
| 78 | std::vector<const char *> opts; |
| 79 | for (int i = 1; i < argc; ++i) { |
| 80 | opts.push_back(argv[i]); |
| 81 | } |
| 82 | return executeGLTrim(opts, NULL); |
| 83 | } |
| 84 | |
| 85 | const Command gltrim_command = { |
| 86 | "gltrim", |
nothing calls this directly
no test coverage detected