test-extensions-lib.c 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /* Copyright (C) 1999,2000,2001,2003, 2006, 2008 Free Software Foundation, Inc.
  2. *
  3. * This library is free software; you can redistribute it and/or
  4. * modify it under the terms of the GNU Lesser General Public License
  5. * as published by the Free Software Foundation; either version 3 of
  6. * the License, or (at your option) any later version.
  7. *
  8. * This library is distributed in the hope that it will be useful, but
  9. * WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. * Lesser General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU Lesser General Public
  14. * License along with this library; if not, write to the Free Software
  15. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  16. * 02110-1301 USA
  17. */
  18. #ifdef HAVE_CONFIG_H
  19. # include <config.h>
  20. #endif
  21. #include <libguile.h>
  22. SCM init2_count;
  23. void libtest_extensions_init2 (void);
  24. void libtest_extensions_init (void);
  25. void
  26. libtest_extensions_init2 (void)
  27. {
  28. scm_variable_set_x (init2_count,
  29. scm_from_int (scm_to_int (scm_variable_ref (init2_count)) + 1));
  30. }
  31. void
  32. libtest_extensions_init (void)
  33. {
  34. scm_c_define ("init2-count", scm_from_int (0));
  35. init2_count = scm_permanent_object (scm_c_lookup ("init2-count"));
  36. scm_c_register_extension ("libtest-extensions", "libtest_extensions_init2",
  37. (scm_t_extension_init_func)libtest_extensions_init2, NULL);
  38. }