find_all.h 414 B

123456789101112131415161718
  1. /*
  2. * Part of Scheme 48 1.9. See file COPYING for notices and license.
  3. *
  4. * Authors: David Frese
  5. */
  6. #ifndef __S48_GC_FIND_ALL_H
  7. #define __S48_GC_FIND_ALL_H
  8. #include "scheme48.h"
  9. extern s48_value s48_find_all(long type);
  10. extern s48_value s48_find_all_records(s48_value record_type);
  11. extern s48_value s48_gather_objects(char(*predicate)(s48_value),
  12. char(*for_each_object)(char(*)(s48_value)));
  13. #endif