xref: /haiku/src/bin/package_repo/package_repo.h (revision b617a7b410c05275effb95f4b2f5608359d9b7b9)
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