/* * Copyright (C) 2015-2020 Alibaba Group Holding Limited */ #ifndef AMP_UTILS_H #define AMP_UTILS_H #include #include #include #if defined(__cplusplus) extern "C" { #endif unsigned char hex2num(unsigned char ch); char itoch(int val); void num2hex(unsigned char ch, unsigned char *hex); int end_with(char *str1, char *str2); void amp_dump(const char *title, const void *buff, const int len); int amp_version_get(char *version); int amp_app_version_get(char *version); #ifdef SUPPORT_NODE_MODELES char *getFilePath(char *name); char *getClearPath(char *path); char *getNodeModulePath(char *path); #endif #if defined(__cplusplus) } #endif #endif /* JSE_UTILS_H */