C Argv check which argv path came from what input
If i input paths with wildcards as command line parameters, like: testprogramm a* b* and the directory contains the following content: aa ab ba bb my argv string will contain: {"testprogramm","aa","ab","ba","bb"} However, i want to differentiate between files that originated from the first argument (a*) and the second (b*), how do i do that? What… Read More C Argv check which argv path came from what input