v8js_commonjs.h 1.0 KB

12345678910111213141516171819202122232425262728
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 7 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2015 The PHP Group |
  6. +----------------------------------------------------------------------+
  7. | http://www.opensource.org/licenses/mit-license.php MIT License |
  8. +----------------------------------------------------------------------+
  9. | Author: Stefan Siegl <[email protected]> |
  10. +----------------------------------------------------------------------+
  11. */
  12. #ifndef V8JS_COMMONJS_H
  13. #define V8JS_COMMONJS_H
  14. void v8js_commonjs_normalise_identifier(const char *base, const char *identifier, char *normalised_path, char *module_name);
  15. #endif /* V8JS_COMMONJS_H */
  16. /*
  17. * Local variables:
  18. * tab-width: 4
  19. * c-basic-offset: 4
  20. * indent-tabs-mode: t
  21. * End:
  22. * vim600: noet sw=4 ts=4 fdm=marker
  23. * vim<600: noet sw=4 ts=4
  24. */