diff options
| author | David Sommerseth <davids@redhat.com> | 2009-10-22 15:19:38 +0200 |
|---|---|---|
| committer | David Sommerseth <davids@redhat.com> | 2009-10-22 15:19:38 +0200 |
| commit | 7b6de515e2f49e56267d47a2eec3ea899b6d2db5 (patch) | |
| tree | f24eaedefe0ce9c55eff093c44af9d0a54ef7a26 /server/parser/argparser.h | |
| parent | 0753e3b266c5f531dbb7aacb9ab3068275314c58 (diff) | |
| download | rteval-7b6de515e2f49e56267d47a2eec3ea899b6d2db5.tar.gz rteval-7b6de515e2f49e56267d47a2eec3ea899b6d2db5.tar.xz rteval-7b6de515e2f49e56267d47a2eec3ea899b6d2db5.zip | |
Added argument parser source files
Diffstat (limited to 'server/parser/argparser.h')
| -rw-r--r-- | server/parser/argparser.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/server/parser/argparser.h b/server/parser/argparser.h new file mode 100644 index 0000000..53214e1 --- /dev/null +++ b/server/parser/argparser.h @@ -0,0 +1,28 @@ +/* + * Copyright (C) 2009 Red Hat Inc. + * + * This application is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the Free + * Software Foundation; version 2. + * + * This application is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + */ + +/** + * @file argparser.h + * @author David Sommerseth <davids@redhat.com> + * @date Thu Oct 22 13:58:46 2009 + * + * @brief Generic argument parser + * + */ + +#ifndef _RTEVAL_ARGPARSER_h +#define _RTEVAL_ARGPARSER_h + +eurephiaVALUES *parse_arguments(int argc, char **argv); + +#endif |
