mirror of
https://github.com/libretro/bsnes-libretro-cplusplus98.git
synced 2025-04-07 20:51:32 +00:00
13 lines
263 B
C++
13 lines
263 B
C++
#ifndef NALL_STRING_WRAPPER_HPP
|
|
#define NALL_STRING_WRAPPER_HPP
|
|
|
|
namespace nall {
|
|
|
|
bool string::wildcard(const char *str) const { return nall::wildcard(data, str); }
|
|
bool string::iwildcard(const char *str) const { return nall::iwildcard(data, str); }
|
|
|
|
}
|
|
|
|
#endif
|
|
|