GenSVM
Functions
gensvm_cmdarg.h File Reference

Header file for gensvm_cmdarg.c. More...

#include "gensvm_globals.h"
Include dependency graph for gensvm_cmdarg.h:
This graph shows which files directly or indirectly include this file:

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...
 

Detailed Description

Header file for gensvm_cmdarg.c.

Author
G.J.J. van den Burg
Date
2016-05-01

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.

Function Documentation

◆ gensvm_check_argv()

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.

Parameters
[in]argcnumber of command line arguments
[in]argvcommand line arguments
[in]strstring to find in the arguments
Returns
index of the string in the arguments if found, 0 otherwise

Definition at line 49 of file gensvm_cmdarg.c.

◆ gensvm_check_argv_eq()

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

Parameters
[in]argcnumber of command line arguments
[in]argvcommand line arguments
[in]strstring to find in the arguments
Returns
index of the command line argument that corresponds to the string, 0 if none matches.

Definition at line 78 of file gensvm_cmdarg.c.