Hello :

In MicroSoft C/C++ , there are functions ( _findfirst, _findnext ... )
used to look for files with wildcard characters , but none of them
exist in Unix C/C++ .

example :

find all files named like "demo_*.*"

Are there similar functions exist in Unix C/C++ ? ( don't use system() function )

If not , how to implement them with simplest methods ?

Thanks !!

----- jesvh