|
Revision 901, 1.6 kB
(checked in by mina, 3 years ago)
|
Insignificant cleanup of CVS artifacts after svn migration:
1. Remove unneeded .cvsignore files since ths svn:ignore property is set to the same list
2. Replaced $Header$ macros with $Id$
3. Modify a couple of documentation files referring to CVS to SVN
|
- Property svn:eol-style set to
native
- Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 |
/********************************************************************\ |
|---|
| 2 |
* This program is free software; you can redistribute it and/or * |
|---|
| 3 |
* modify it under the terms of the GNU General Public License as * |
|---|
| 4 |
* published by the Free Software Foundation; either version 2 of * |
|---|
| 5 |
* the License, or (at your option) any later version. * |
|---|
| 6 |
* * |
|---|
| 7 |
* This program is distributed in the hope that it will be useful, * |
|---|
| 8 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of * |
|---|
| 9 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * |
|---|
| 10 |
* GNU General Public License for more details. * |
|---|
| 11 |
* * |
|---|
| 12 |
* You should have received a copy of the GNU General Public License* |
|---|
| 13 |
* along with this program; if not, contact: * |
|---|
| 14 |
* * |
|---|
| 15 |
* Free Software Foundation Voice: +1-617-542-5942 * |
|---|
| 16 |
* 59 Temple Place - Suite 330 Fax: +1-617-542-2652 * |
|---|
| 17 |
* Boston, MA 02111-1307, USA gnu@gnu.org * |
|---|
| 18 |
* * |
|---|
| 19 |
\********************************************************************/ |
|---|
| 20 |
|
|---|
| 21 |
/* $Id$ */ |
|---|
| 22 |
/** @file commandline.h |
|---|
| 23 |
@brief Command line argument handling |
|---|
| 24 |
@author Copyright (C) 2004 Philippe April <papril777@yahoo.com> |
|---|
| 25 |
*/ |
|---|
| 26 |
|
|---|
| 27 |
#ifndef _COMMANDLINE_H_ |
|---|
| 28 |
#define _COMMANDLINE_H_ |
|---|
| 29 |
|
|---|
| 30 |
/** @brief Parses the command line and set the config accordingly */ |
|---|
| 31 |
void parse_commandline(int, char**); |
|---|
| 32 |
|
|---|
| 33 |
#endif /* _COMMANDLINE_H_ */ |
|---|