Skip to content

Commit 33121f5

Browse files
committed
Forward gu_IS_A_P (undocumented) C macro to rust
1 parent f8e1b81 commit 33121f5

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

guile-rs-sys/wrapper.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,9 @@ SCM gu_scm_list_n(SCM* elts) {
4949
return answer;
5050
}
5151

52+
int gu_SCM_IS_A_P(SCM val, SCM type) {
53+
return SCM_IS_A_P(val, type);
54+
}
5255

5356
void test_func() {
5457
return;

0 commit comments

Comments
 (0)