mirror of
https://github.com/osm2pgsql-dev/osm2pgsql.git
synced 2025-08-20 13:20:40 +00:00
11 lines
162 B
C++
11 lines
162 B
C++
#ifndef WILDCMP_H
|
|
#define WILDCMP_H
|
|
|
|
#define NO_MATCH 0
|
|
#define FULL_MATCH 1
|
|
#define WC_MATCH 2
|
|
|
|
int wildMatch(const char *wildCard, const char *string);
|
|
|
|
#endif
|