MCPcopy Create free account
hub / github.com/DreamSourceLab/DSView / have_non_null_conds

Function have_non_null_conds

libsigrokdecode4DSL/instance.c:822–836  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

820}
821
822static gboolean have_non_null_conds(const struct srd_decoder_inst *di)
823{
824 GSList *l, *cond;
825
826 if (!di)
827 return FALSE;
828
829 for (l = di->condition_list; l; l = l->next) {
830 cond = l->data;
831 if (cond)
832 return TRUE;
833 }
834
835 return FALSE;
836}
837
838static void update_old_pins_array(struct srd_decoder_inst *di)
839{

Callers 1

find_matchFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected