b4bc23078a
Notable changes: - Remove the comments in port impl, that's easily getting to in-consistence - Sync the jerryscript-port.h and 05.PORT-API.md - Fixes the invalid comment in port codes JerryScript-DCO-1.0-Signed-off-by: Yonggang Luo luoyonggang@gmail.com
56 lines
1.4 KiB
C
56 lines
1.4 KiB
C
/* Copyright JS Foundation and other contributors, http://js.foundation
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#include "jerryscript-port.h"
|
|
|
|
#if defined(_WIN32)
|
|
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
jerry_char_t *
|
|
jerry_port_path_normalize (const jerry_char_t *path_p, jerry_size_t path_size)
|
|
{
|
|
(void) path_size;
|
|
|
|
return (jerry_char_t *) _fullpath (NULL, path_p, _MAX_PATH);
|
|
} /* jerry_port_path_normalize */
|
|
|
|
void
|
|
jerry_port_path_free (jerry_char_t *path_p)
|
|
{
|
|
free (path_p);
|
|
} /* jerry_port_path_free */
|
|
|
|
jerry_size_t
|
|
jerry_port_path_base (const jerry_char_t *path_p)
|
|
{
|
|
const jerry_char_t *end_p = path_p + strlen ((const char *) path_p);
|
|
|
|
while (end_p > path_p)
|
|
{
|
|
if (end_p[-1] == '/' || end_p[-1] == '\\')
|
|
{
|
|
return (jerry_size_t) (end_p - path_p);
|
|
}
|
|
|
|
end_p--;
|
|
}
|
|
|
|
return 0;
|
|
} /* jerry_port_path_base */
|
|
|
|
#endif /* defined(_WIN32) */
|