*
* @note If the check fails, the remaining of the test is aborted
*
- * @since 0.10.1
+ * @since 0.11.0
*/
#define ck_assert_mem_eq(X, Y, L) _ck_assert_mem(X, ==, Y, L)
/**
*
* @note If the check fails, the remaining of the test is aborted
*
- * @since 0.10.1
+ * @since 0.11.0
*/
#define ck_assert_mem_ne(X, Y, L) _ck_assert_mem(X, !=, Y, L)
/**
*
* @note If the check fails, the remaining of the test is aborted
*
- * @since 0.10.1
+ * @since 0.11.0
*/
#define ck_assert_mem_lt(X, Y, L) _ck_assert_mem(X, <, Y, L)
/**
*
* @note If the check fails, the remaining of the test is aborted
*
- * @since 0.10.1
+ * @since 0.11.0
*/
#define ck_assert_mem_le(X, Y, L) _ck_assert_mem(X, <=, Y, L)
/**
*
* @note If the check fails, the remaining of the test is aborted
*
- * @since 0.10.1
+ * @since 0.11.0
*/
#define ck_assert_mem_gt(X, Y, L) _ck_assert_mem(X, >, Y, L)
/**
*
* @note If the check fails, the remaining of the test is aborted
*
- * @since 0.10.1
+ * @since 0.11.0
*/
#define ck_assert_mem_ge(X, Y, L) _ck_assert_mem(X, >=, Y, L)