Hallo, dies ist ein Test.
PWD: /www/data-lst1/unixsoft/unixsoft/kaempfer/.public_html
Running in File Mode
Relative path: ./../../../../../../usr/include/fnmatch.h
Real path: /usr/include/fnmatch.h
Zurück
/* * Copyright (c) 1993, 2020, Oracle and/or its affiliates. */ /* * Copyright 1985, 1994 by Mortice Kern Systems Inc. All rights reserved. */ #ifndef _FNMATCH_H #define _FNMATCH_H #ifdef __cplusplus extern "C" { #endif #define FNM_PATHNAME 0x01 /* Slash in str only matches slash in pattern */ #define FNM_NOESCAPE 0x02 /* Disable '\'-quoting of metacharacters */ #define FNM_PERIOD 0x04 /* Leading period in string must be exactly */ /* matched by period in pattern */ #define FNM_IGNORECASE 0x08 /* Ignore case when making comparisons */ #define FNM_LEADING_DIR 0x10 /* Match pattern as leading directory path */ #define FNM_FILE_NAME FNM_PATHNAME #define FNM_CASEFOLD FNM_IGNORECASE #define FNM_NOMATCH 1 /* string doesnt match the specified pattern */ #define FNM_ERROR 2 /* error occurred */ #define FNM_NOSYS 3 /* Function (XPG4) not supported */ extern int fnmatch(const char *, const char *, int); #ifdef __cplusplus } #endif #endif /* _FNMATCH_H */