1 /* 2 * Copyright 2011, Oliver Tappe <zooey@hirschkaefer.de> 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef PACKAGE_REPO_H 6 #define PACKAGE_REPO_H 7 8 9 void print_usage_and_exit(bool error); 10 11 int command_create(int argc, const char* const* argv); 12 int command_list(int argc, const char* const* argv); 13 int command_update(int argc, const char* const* argv); 14 15 16 #endif // PACKAGE_REPO_H 17