My library for creating command line tools in c++.
Put the args.h file in your project folder and import it by using
#include "args.h" ... int main(int argc, char *argv[]) { vector cmd=getWords(argc,argv); ... }
You need to write the following line of code:
vector cmd=getWords(argc,argv);
Now all arguments given from the command line are in the vector cmd.
getWords() print() lower() strToInt()