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