MCPcopy Create free account
hub / github.com/ElementsProject/lightning / colname_to_delete

Function colname_to_delete

db/db_sqlite3.c:440–449  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

438}
439
440static bool colname_to_delete(const char **colnames,
441 size_t num_colnames,
442 const char *columnname)
443{
444 for (size_t i = 0; i < num_colnames; i++) {
445 if (streq(columnname, colnames[i]))
446 return true;
447 }
448 return false;
449}
450
451/* Returns NULL if this doesn't look like a column definition */
452static const char *find_column_name(const tal_t *ctx,

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected