We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b046ec commit f39c43dCopy full SHA for f39c43d
pyperformance/data-files/benchmarks/bm_ctypes/cmodule.c
@@ -1,29 +1,37 @@
1
#include <Python.h>
2
3
+
4
+Py_EXPORTED_SYMBOL
5
void void_foo_void(void) {
6
7
}
8
9
10
int int_foo_int(int a) {
11
return a + 1;
12
13
14
15
void void_foo_int(int a) {
16
17
18
19
20
void void_foo_int_int(int a, int b) {
21
22
23
24
25
void void_foo_int_int_int(int a, int b, int c) {
26
27
28
29
30
void void_foo_int_int_int_int(int a, int b, int c, int d) {
31
32
33
34
35
void void_foo_constchar(const char* str) {
36
37
0 commit comments