All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scala-native.fnmatch.c Maven / Gradle / Ivy

There is a newer version: 0.5.5
Show newest version
#if defined(SCALANATIVE_COMPILE_ALWAYS) || defined(__SCALANATIVE_POSIX_FNMATCH)
#if defined(__unix__) || defined(__unix) || defined(unix) ||                   \
    (defined(__APPLE__) && defined(__MACH__))

#include 

int scalanative_fnm_nomatch() { return FNM_NOMATCH; };

int scalanative_fnm_pathname() { return FNM_PATHNAME; };

int scalanative_fnm_period() { return FNM_PERIOD; };

int scalanative_fnm_noescape() { return FNM_NOESCAPE; };

#endif // Unix or Mac OS
#endif




© 2015 - 2024 Weber Informatics LLC | Privacy Policy