Implementing comparison of ecma-strings for different types of string containers.

This commit is contained in:
Ruben Ayrapetyan
2014-08-21 19:54:11 +04:00
parent bb55d895c4
commit 7d38fee700
3 changed files with 242 additions and 111 deletions
+2 -2
View File
@@ -97,8 +97,8 @@ extern ssize_t ecma_string_to_zt_string (ecma_string_t *string_desc_p,
ecma_char_t *buffer_p,
ssize_t buffer_size);
extern int32_t ecma_compare_zt_string_to_zt_string (const ecma_char_t *string1_p, const ecma_char_t *string2_p);
extern bool ecma_compare_ecma_string_to_ecma_string (const ecma_string_t *string1_p,
const ecma_string_t *string2_p);
extern bool ecma_compare_ecma_string_to_ecma_string (ecma_string_t *string1_p,
ecma_string_t *string2_p);
/* ecma-helpers-number.c */
extern bool ecma_number_is_nan (ecma_number_t num);