mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-12 09:17:53 +00:00
13 lines
244 B
C
13 lines
244 B
C
/*
|
|
* duk_hstring assertion helpers.
|
|
*/
|
|
|
|
#include "third_party/duktape/duk_internal.h"
|
|
|
|
#if defined(DUK_USE_ASSERTIONS)
|
|
|
|
DUK_INTERNAL void duk_hstring_assert_valid(duk_hstring *h) {
|
|
DUK_ASSERT(h != NULL);
|
|
}
|
|
|
|
#endif /* DUK_USE_ASSERTIONS */
|