jerry_module.h 272 B

12345678910111213141516171819
  1. #ifndef JERRY_MODULE_H__
  2. #define JERRY_MODULE_H__
  3. #ifdef __cplusplus
  4. extern "C"
  5. {
  6. #endif
  7. char *js_module_dirname(char *path);
  8. char *js_module_normalize_path(const char *directory, const char *filename);
  9. int js_module_init(void);
  10. #ifdef __cplusplus
  11. }
  12. #endif
  13. #endif