mirror of
https://github.com/CTCaer/RetroArch.git
synced 2025-01-02 16:19:09 +00:00
9 lines
150 B
C
9 lines
150 B
C
|
#ifndef __RL_FNMATCH_H__
|
||
|
#define __RL_FNMATCH_H__
|
||
|
|
||
|
#define FNM_NOMATCH 1
|
||
|
|
||
|
int rl_fnmatch(const char *pattern, const char *string, int flags);
|
||
|
|
||
|
#endif
|