fnmatch.cpp 249 B

1234567891011121314
  1. /*
  2. * Copyright (c) 2021, the SerenityOS developers.
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #include <AK/Format.h>
  7. #include <fnmatch.h>
  8. int fnmatch(char const*, char const*, int)
  9. {
  10. dbgln("FIXME: Implement fnmatch()");
  11. return 0;
  12. }