Remove usage of isalpha, isdigit, isxdigit, isspace in the whole engine except implementation of JSON built-in, moving the functions to JSON built-in's module.

JerryScript-DCO-1.0-Signed-off-by: Ruben Ayrapetyan r.ayrapetyan@samsung.com
This commit is contained in:
Ruben Ayrapetyan
2015-07-03 02:17:14 +03:00
parent bcedc901cd
commit 7b3042fdc9
6 changed files with 72 additions and 94 deletions
-7
View File
@@ -22,11 +22,4 @@
# define EXTERN_C
#endif /* !__cplusplus */
extern EXTERN_C int isxdigit (int c);
extern EXTERN_C int isalpha (int c);
extern EXTERN_C int isdigit (int c);
extern EXTERN_C int islower (int c);
extern EXTERN_C int isspace (int c);
extern EXTERN_C int isupper (int c);
#endif /* !JERRY_LIBC_CTYPE_H */