|
libultraship
Reimplementations of libultra (N64 SDK) functions for modern hardware
|
#include <stdbool.h>Go to the source code of this file.
Functions | |
| bool | glob_match (char const *pat, char const *str) |
| Tests whether a string matches a glob pattern. | |
| bool glob_match | ( | char const * | pat, |
| char const * | str | ||
| ) |
Tests whether a string matches a glob pattern.
Supports the wildcard characters '*' (matches zero or more characters) and '?' (matches exactly one character).
| pat | Null-terminated glob pattern. |
| str | Null-terminated string to test. |
str matches pat, false otherwise.