cb_path.h 375 B

123456789101112131415161718192021222324
  1. /*
  2. * SPDX-License-Identifier: Apache-2.0
  3. *
  4. * Change Logs:
  5. * Date Author Notes
  6. * 2023-07-19 tyx first implementation
  7. */
  8. #ifndef CB_PATH_H_
  9. #define CB_PATH_H_
  10. #include "cb_def.h"
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14. int cb_fnmatch(const char * pattern, const char * string);
  15. #ifdef __cplusplus
  16. }
  17. #endif
  18. #endif