procs.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /* classes: h_files */
  2. #ifndef SCM_PROCS_H
  3. #define SCM_PROCS_H
  4. /* Copyright (C) 1995, 1996, 1998, 1999, 2000, 2001, 2006, 2008, 2009,
  5. * 2012, 2013 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_procedure_p (SCM obj);
  24. SCM_API SCM scm_thunk_p (SCM obj);
  25. SCM_API SCM scm_procedure_with_setter_p (SCM obj);
  26. SCM_API SCM scm_make_procedure_with_setter (SCM procedure, SCM setter);
  27. SCM_API SCM scm_procedure (SCM proc);
  28. SCM_API SCM scm_setter (SCM proc);
  29. SCM_INTERNAL void scm_init_procs (void);
  30. #endif /* SCM_PROCS_H */
  31. /*
  32. Local Variables:
  33. c-file-style: "gnu"
  34. End:
  35. */