cosmopolitan/third_party/duktape/duk_hbuffer_assert.c

14 lines
243 B
C
Raw Normal View History

2020-06-15 14:18:57 +00:00
/*
* duk_hbuffer assertion helpers
*/
#include "third_party/duktape/duk_internal.h"
#if defined(DUK_USE_ASSERTIONS)
DUK_INTERNAL void duk_hbuffer_assert_valid(duk_hbuffer *h) {
DUK_ASSERT(h != NULL);
}
#endif /* DUK_USE_ASSERTIONS */