latest SDK

This commit is contained in:
2021-12-14 00:28:25 -07:00
commit 68b10d413b
492 changed files with 80542 additions and 0 deletions

10
pfc/wildcard.h Normal file
View File

@@ -0,0 +1,10 @@
#pragma once
namespace wildcard_helper
{
bool test_path(const char * path,const char * pattern,bool b_separate_by_semicolon = false);//will extract filename from path first
bool test(const char * str,const char * pattern,bool b_separate_by_semicolon = false);//tests if str matches pattern
bool has_wildcards(const char * str);
const char * get_wildcard_list();
bool is_wildcard(char c);
};