1/*
2 * This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
5 *
6 * Copyright 1997 - July 2008 CWI, August 2008 - 2019 MonetDB B.V.
7 */
8
9#ifndef _ARGVCMDS_H
10#define _ARGVCMDS_H 1
11
12#include "utils/utils.h"
13
14int command_help(int argc, char *argv[]);
15int command_version(void);
16int command_create(int argc, char *argv[]);
17int command_get(confkeyval *ckv, int argc, char *argv[]);
18int command_set(confkeyval *ckv, int argc, char *argv[]);
19int command_stop(confkeyval *ckv, int argc, char *argv[]);
20
21#endif
22