| 51 | |
| 52 | |
| 53 | static void usage(const char* argv0) |
| 54 | { |
| 55 | cerr << "Usage: " << argv0 << " <command> [OPTIONS]" << endl |
| 56 | << endl |
| 57 | << "Available commands:" << endl |
| 58 | << " help" << endl; |
| 59 | |
| 60 | // Get a list of available tools. |
| 61 | foreachkey (const string& name, tools) { |
| 62 | cerr << " " << name << endl; |
| 63 | } |
| 64 | } |
| 65 | |
| 66 | |
| 67 | int main(int argc, char** argv) |
no outgoing calls