1 /* 2 * Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef PACKAGE_H 6 #define PACKAGE_H 7 8 9 void print_usage_and_exit(bool error); 10 11 int command_add(int argc, const char* const* argv); 12 int command_create(int argc, const char* const* argv); 13 int command_dump(int argc, const char* const* argv); 14 int command_extract(int argc, const char* const* argv); 15 int command_list(int argc, const char* const* argv); 16 17 18 #endif // PACKAGE_H 19