@@ -6,32 +6,32 @@ Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
6
6
<+>UTF-8
7
7
===================================================================
8
8
diff --git a/secp256k1/src/scratch.h b/secp256k1/src/scratch.h
9
- --- a/secp256k1/src/scratch.h(revision 0ba880590d5c9e40e99db492288c218722623921)
10
- +++ b/secp256k1/src/scratch.h(date 1743529452895)
9
+ --- a/secp256k1/src/scratch.h (revision 0ba880590d5c9e40e99db492288c218722623921)
10
+ +++ b/secp256k1/src/scratch.h (date 1743529452895)
11
11
@@ -20,20 +20,20 @@
12
12
const secp256k1_callback* error_callback;
13
13
} secp256k1_scratch;
14
-
14
+
15
15
- static secp256k1_scratch* secp256k1_scratch_create(const secp256k1_callback* error_callback, size_t max_size);
16
16
+ secp256k1_scratch* secp256k1_scratch_create(const secp256k1_callback* error_callback, size_t max_size);
17
-
17
+
18
18
- static void secp256k1_scratch_destroy(secp256k1_scratch* scratch);
19
19
+ void secp256k1_scratch_destroy(secp256k1_scratch* scratch);
20
-
20
+
21
21
/** Attempts to allocate a new stack frame with `n` available bytes. Returns 1 on success, 0 on failure */
22
22
- static int secp256k1_scratch_allocate_frame(secp256k1_scratch* scratch, size_t n, size_t objects);
23
23
+ int secp256k1_scratch_allocate_frame(secp256k1_scratch* scratch, size_t n, size_t objects);
24
-
24
+
25
25
/** Deallocates a stack frame */
26
26
- static void secp256k1_scratch_deallocate_frame(secp256k1_scratch* scratch);
27
27
+ void secp256k1_scratch_deallocate_frame(secp256k1_scratch* scratch);
28
-
28
+
29
29
/** Returns the maximum allocation the scratch space will allow */
30
30
- static size_t secp256k1_scratch_max_allocation(const secp256k1_scratch* scratch, size_t n_objects);
31
31
+ size_t secp256k1_scratch_max_allocation(const secp256k1_scratch* scratch, size_t n_objects);
32
-
32
+
33
33
/** Returns a pointer into the most recently allocated frame, or NULL if there is insufficient available space */
34
34
- static void *secp256k1_scratch_alloc(secp256k1_scratch* scratch, size_t n);
35
35
+ void *secp256k1_scratch_alloc(secp256k1_scratch* scratch, size_t n);
36
-
37
- #endif
36
+
37
+ #endif
0 commit comments