NAME
nst_strmatch -- match string against file name pattern
PROTOTYPE
int nst_strmatch( const char *pcStr, const char *pcPattern)
ARGUMENTS
- const char *pcStr
- the string
- const char *pcPattern
- the file name pattern. Allowed wildcards are * (any substring), ? (any single char), [..] (range specification) and [^..] (forbidden range)
DESCRIPTION:
Returns 1, if .pcStr matches the given pattern, 0 otherwise.
EXAMPLE:
.pcPattern="[A-Z]*??[^0-9]" matches all strings that start with
a capital letter, followed by at least three further characters,
of which the last one is not a digit.
FILE
/local/homes/rhaschke/nst7/man/../o.linx86//../nstsrc/nst0.c