mirror of https://github.com/svaarala/duktape.git
Sami Vaarala
11 years ago
3 changed files with 17 additions and 0 deletions
@ -0,0 +1,10 @@ |
|||
/*
|
|||
* Shared error message strings |
|||
* |
|||
* To minimize code footprint, try to share error messages inside Duktape |
|||
* code. |
|||
*/ |
|||
|
|||
#include "duk_internal.h" |
|||
|
|||
const char *duk_errmsg_invalid_count = "invalid count"; |
@ -0,0 +1,6 @@ |
|||
#ifndef DUK_ERRMSG_H_INCLUDED |
|||
#define DUK_ERRMSG_H_INCLUDED |
|||
|
|||
extern const char *duk_errmsg_invalid_count; |
|||
|
|||
#endif /* DUK_ERRMSG_H_INCLUDED */ |
Loading…
Reference in new issue