summaryrefslogtreecommitdiff
path: root/sa-extract/cfloatlist.pxd
blob: 026f273939c1e7d5651e580201a56cc36833da9a (plain)
1
2
3
4
5
6
7
8
9
10
from libc.stdio cimport FILE

cdef class CFloatList:
	cdef int size
	cdef int increment
	cdef int len
	cdef float* arr
	cdef void write_handle(self, FILE* f)
	cdef void read_handle(self, FILE* f)
	cdef void set(self, int i, float v)