AdobeGlyphList.h 242 B

123456789101112131415
  1. /*
  2. * Copyright (c) 2023, Nico Weber <thakis@chromium.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. #include <AK/StringView.h>
  8. namespace PDF {
  9. Optional<u32> glyph_name_to_unicode(StringView, bool is_zapf_dingbats);
  10. }