1
1
/****************************************************************
2
2
* *
3
- * Copyright (c) 2020-2021 YottaDB LLC and/or its subsidiaries. *
3
+ * Copyright (c) 2020-2022 YottaDB LLC and/or its subsidiaries. *
4
4
* All rights reserved. *
5
5
* *
6
6
* This source code contains the intellectual property *
@@ -55,6 +55,7 @@ use super::Context;
55
55
/// assert_eq!(&buf, b"entry called");
56
56
/// ```
57
57
/// [repr-c]: https://doc.rust-lang.org/nomicon/ffi.html#interoperability-with-foreign-code
58
+ /// [`cip_t!`]: crate::cip_t!
58
59
#[ macro_export]
59
60
macro_rules! ci_t {
60
61
( $tptoken: expr, $err_buffer: expr, $routine: expr $( , $args: expr) * $( , ) ?) => { {
@@ -108,6 +109,7 @@ macro_rules! ci_t {
108
109
/// }
109
110
/// assert_eq!(&buf, b"entry called");
110
111
/// ```
112
+ /// [`ci_t!`]: crate::ci_t!
111
113
#[ macro_export]
112
114
macro_rules! cip_t {
113
115
( $tptoken: expr, $err_buffer: expr, $routine: expr, $( $args: expr) ,* $( , ) ?) => { {
@@ -131,6 +133,8 @@ impl Context {
131
133
/// - [C SimpleAPI documentation](https://docs.yottadb.com/MultiLangProgGuide/cprogram.html#ydb-ci-tab-open-ydb-ci-tab-open-t)
132
134
/// - [Call-in interface](https://docs.yottadb.com/ProgrammersGuide/extrout.html#call-in-interface)
133
135
/// - [`ci_t!`] and [`cip_t!`]
136
+ /// [`cip_t!`]: crate::cip_t!
137
+ /// [`ci_t!`]: crate::ci_t!
134
138
///
135
139
/// # Errors
136
140
0 commit comments