unicode.h 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. /* classes: h_files */
  2. #ifndef SCM_UNICODE_H
  3. #define SCM_UNICODE_H
  4. /* Copyright (C) 2014 Free Software Foundation, Inc.
  5. *
  6. * This library is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU Lesser General Public License as
  8. * published by the Free Software Foundation, either version 3 of the
  9. * License, or (at your option) any later version.
  10. *
  11. * This library is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with this library. If not, see
  18. * <http://www.gnu.org/licenses/>.
  19. */
  20. #include "libguile/__scm.h"
  21. SCM_INTERNAL SCM scm_formal_name_to_char (SCM);
  22. SCM_INTERNAL SCM scm_char_to_formal_name (SCM);
  23. SCM_INTERNAL void scm_init_unicode (void);
  24. #endif /* SCM_UNICODE_H */
  25. /*
  26. Local Variables:
  27. c-file-style: "gnu"
  28. End:
  29. */