mirror of
https://github.com/phpv8/v8js.git
synced 2024-11-08 15:48:40 +00:00
19 lines
874 B
C
19 lines
874 B
C
/*
|
|
+----------------------------------------------------------------------+
|
|
| PHP Version 5 |
|
|
+----------------------------------------------------------------------+
|
|
| Copyright (c) 1997-2015 The PHP Group |
|
|
+----------------------------------------------------------------------+
|
|
| http://www.opensource.org/licenses/mit-license.php MIT License |
|
|
+----------------------------------------------------------------------+
|
|
| Author: Stefan Siegl <stesie@brokenpipe.de> |
|
|
+----------------------------------------------------------------------+
|
|
*/
|
|
|
|
#ifndef V8JS_COMMONJS_H
|
|
#define V8JS_COMMONJS_H
|
|
|
|
void v8js_commonjs_normalise_identifier(char *base, char *identifier, char *normalised_path, char *module_name);
|
|
|
|
#endif /* V8JS_COMMONJS_H */
|