1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
use crate_c;
/// Guard function
///
/// Each time a loop appears in your code a call to this must be
/// the first branch instruction in wasm binary after the beginning of the loop.
/// In order to achieve this in Rust use the `while` loop with expression block.
///
/// # Example
///
/// ```no_run
/// let mut i = 0;
/// while {
/// _g(UNIQUE_GUARD_ID, MAXITER + 1);
/// i < MAXITER
/// } {
/// // your code
/// i += 1;
/// }
/// ```
/// Accept the originating transaction and commit any changes the hook made
!
/// Reject the originating transaction and discard any changes the hook made
!