10 lines
216 B
Cython
10 lines
216 B
Cython
![]() |
|
||
|
cdef extern from "storer.h":
|
||
|
ctypedef struct Storer:
|
||
|
pass
|
||
|
|
||
|
Storer* storer_new();
|
||
|
void storer_destroy(Storer *s);
|
||
|
int storer_get_value(Storer *s);
|
||
|
void storer_set_value(Storer *s, int v);
|