GenSVM
|
Header file for gensvm_cmdarg.c. More...
#include "gensvm_globals.h"
Go to the source code of this file.
Functions | |
int | gensvm_check_argv (int argc, char **argv, char *str) |
Check if any command line arguments contain string. More... | |
int | gensvm_check_argv_eq (int argc, char **argv, char *str) |
Check if a command line argument equals a string. More... | |
Header file for gensvm_cmdarg.c.
Function declarations for dealing with command line arguments.
This file is part of GenSVM.
GenSVM 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, either version 3 of the License, or (at your option) any later version.
GenSVM 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.
You should have received a copy of the GNU General Public License along with GenSVM. If not, see http://www.gnu.org/licenses/.
Definition in file gensvm_cmdarg.h.
int gensvm_check_argv | ( | int | argc, |
char ** | argv, | ||
char * | str | ||
) |
Check if any command line arguments contain string.
Check if any of a given array of command line arguments contains a given string. If the string is found, the index of the string in argv is returned. If the string is not found, 0 is returned.
This function is copied from MSVMpack/libMSVM.c.
[in] | argc | number of command line arguments |
[in] | argv | command line arguments |
[in] | str | string to find in the arguments |
Definition at line 49 of file gensvm_cmdarg.c.
int gensvm_check_argv_eq | ( | int | argc, |
char ** | argv, | ||
char * | str | ||
) |
Check if a command line argument equals a string.
Check if any of the command line arguments is exactly equal to a given string. If so, return the index of the corresponding command line argument. If not, return 0.
This function is copied from MSVMpack/libMSVM.c
[in] | argc | number of command line arguments |
[in] | argv | command line arguments |
[in] | str | string to find in the arguments |
Definition at line 78 of file gensvm_cmdarg.c.