feature.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /* classes: h_files */
  2. #ifndef SCM_FEATURE_H
  3. #define SCM_FEATURE_H
  4. /* Copyright (C) 1995, 1996, 1999, 2000, 2001, 2006, 2007, 2008,
  5. * 2011 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 void scm_add_feature (const char* str);
  24. SCM_API SCM scm_program_arguments (void);
  25. SCM_API void scm_set_program_arguments (int argc, char **argv, char *first);
  26. SCM_API SCM scm_set_program_arguments_scm (SCM lst);
  27. SCM_INTERNAL SCM scm_program_arguments_fluid;
  28. SCM_INTERNAL void scm_init_feature (void);
  29. #endif /* SCM_FEATURE_H */
  30. /*
  31. Local Variables:
  32. c-file-style: "gnu"
  33. End:
  34. */