MCPcopy Create free account
hub / github.com/F-Stack/f-stack / xo_encoder_find

Function xo_encoder_find

tools/libxo/libxo/xo_encoder.c:194–207  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

192}
193
194static xo_encoder_node_t *
195xo_encoder_find (const char *name)
196{
197 xo_encoder_node_t *xep;
198
199 xo_encoder_list_init(&xo_encoders);
200
201 XO_ENCODER_LIST_FOREACH(xep, &xo_encoders) {
202 if (xo_streq(xep->xe_name, name))
203 return xep;
204 }
205
206 return NULL;
207}
208
209static xo_encoder_node_t *
210xo_encoder_discover (const char *name)

Callers 3

xo_encoder_registerFunction · 0.85
xo_encoder_unregisterFunction · 0.85
xo_encoder_initFunction · 0.85

Calls 2

xo_encoder_list_initFunction · 0.85
xo_streqFunction · 0.85

Tested by

no test coverage detected