Code

store: Add support for unary IS TRUE / IS FALSE matchers.
[sysdb.git] / src / include / core / store.h
index 48866a7df79e1d3835daf89ccf65e3c46353e4fb..8a80852a7a5ba44d64659b1fc10713a67c7b3b18 100644 (file)
@@ -625,11 +625,13 @@ sdb_store_matcher_t *
 sdb_store_isnull_matcher(sdb_store_expr_t *expr);
 
 /*
- * sdb_store_isnnull_matcher:
- * Creates a matcher matching non-NULL values.
+ * sdb_store_istrue_matcher, sdb_store_isfalse_matcher:
+ * Creates a matcher matching boolean values.
  */
 sdb_store_matcher_t *
-sdb_store_isnnull_matcher(sdb_store_expr_t *expr);
+sdb_store_istrue_matcher(sdb_store_expr_t *expr);
+sdb_store_matcher_t *
+sdb_store_isfalse_matcher(sdb_store_expr_t *expr);
 
 /*
  * sdb_store_matcher_matches: