blob: afe9739d61f9c1fd7d91403fc3cd8dd7ad584a1c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
--- spunk/filepath.h.orig Sat Feb 26 17:54:52 2000
+++ spunk/filepath.h Sat Feb 26 17:56:32 2000
@@ -88,6 +88,7 @@
// Return 1 if the given path contains one of the wildcard characters '*', '?'
// or '[]', return zero otherwise.
+#if 0
int FMatch (const String& Source, const String& Pattern);
// Match the string in Source against Pattern. Pattern may contain the
// wildcards '*', '?', '[abcd]' '[ab-d]', '[!abcd]', '[!ab-d]'
@@ -95,6 +96,7 @@
// otherwise a non zero value is returned.
// If Pattern contains an invalid wildcard pattern (e.g. 'A[x'), the function
// returns zero.
+#endif
int FIsAbsolute (const String& Path);
// Return true if the given path is an absolute path
|