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
9void	print_usage_and_exit(bool error);
10
11int		command_create(int argc, const char* const* argv);
12int		command_list(int argc, const char* const* argv);
13int		command_update(int argc, const char* const* argv);
14
15
16#endif	// PACKAGE_REPO_H
17