9 lines
150 B
C
9 lines
150 B
C
#ifndef OBARRAY_H
|
|
#define OBARRAY_H
|
|
|
|
#define SCM_OBARRAY_P(x) (SCM_HAS_TYP7 (x, scm_tc7_weak_set))
|
|
|
|
SCM scm_obarray_insert ()
|
|
|
|
#endif /* OBARRAY_H */
|