Demangle.h 988 B

123456789101112131415161718192021222324252627282930313233343536
  1. /*
  2. * Copyright 2018-present Facebook, Inc.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #pragma once
  17. #include <cstddef>
  18. #if __has_include(<demangle.h>)
  19. #define FOLLY_DETAIL_HAVE_DEMANGLE_H 1
  20. #else
  21. #define FOLLY_DETAIL_HAVE_DEMANGLE_H 0
  22. #endif
  23. namespace folly {
  24. namespace detail {
  25. extern int cplus_demangle_v3_callback_wrapper(
  26. char const* mangled,
  27. void (*cbref)(char const*, std::size_t, void*),
  28. void* opaque);
  29. } // namespace detail
  30. } // namespace folly