Skip to content

Commit 4fe60f7

Browse files
committed
Update FFI definition with new functions.
1 parent fd04db4 commit 4fe60f7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

rust_fst/_build_ffi.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@
4545
typedef struct SetLevStream SetLevStream;
4646
typedef struct SetRegexStream SetRegexStream;
4747
typedef struct SetOpBuilder SetOpBuilder;
48-
typedef struct SetOpStreamBuilder SetOpStreamBuilder;
4948
typedef struct SetUnion SetUnion;
5049
typedef struct SetIntersection SetIntersection;
5150
typedef struct SetDifference SetDifference;
@@ -70,6 +69,7 @@
7069
SetLevStream* fst_set_levsearch(Set*, Levenshtein*);
7170
SetRegexStream* fst_set_regexsearch(Set*, Regex*);
7271
SetOpBuilder* fst_set_make_opbuilder(Set*);
72+
SetOpBuilder* fst_set_make_opstreambuilder();
7373
void fst_set_free(Set*);
7474
7575
char* fst_set_stream_next(SetStream*);
@@ -81,8 +81,8 @@
8181
char* fst_set_regexstream_next(SetRegexStream*);
8282
void fst_set_regexstream_free(SetRegexStream*);
8383
84-
void fst_set_opbuilder_push_stream(SetOpStreamBuilder*, SetStream*);
85-
void fst_set_opstreambuilder_free(SetOpStreamBuilder*);
84+
void fst_set_opbuilder_push_stream(SetOpBuilder*, SetStream*);
85+
void fst_set_opstreambuilder_free(SetOpBuilder*);
8686
8787
void fst_set_opbuilder_push(SetOpBuilder*, Set*);
8888
void fst_set_opbuilder_free(SetOpBuilder*);

0 commit comments

Comments
 (0)