trees.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /* classes: h_files */
  2. #ifndef SCM_TREES_H
  3. #define SCM_TREES_H
  4. /* Copyright (C) 2009
  5. * Free Software Foundation, Inc.
  6. *
  7. * This library is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public License
  9. * as published by the Free Software Foundation; either version 3 of
  10. * the License, or (at your option) any later version.
  11. *
  12. * This library is distributed in the hope that it will be useful, but
  13. * WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with this library; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  20. * 02110-1301 USA
  21. */
  22. #include "libguile/__scm.h"
  23. SCM_API SCM scm_copy_tree (SCM obj);
  24. /* Guile internal functions */
  25. SCM_INTERNAL void scm_init_trees (void);
  26. #endif /* SCM_TREES_H */
  27. /*
  28. Local Variables:
  29. c-file-style: "gnu"
  30. End:
  31. */