Flipper Zero Firmware
Loading...
Searching...
No Matches
mjs_parser.h
1/*
2 * Copyright (c) 2016 Cesanta Software Limited
3 * All rights reserved
4 */
5
6#ifndef MJS_PARSER_H
7#define MJS_PARSER_H
8
9#include "mjs_internal.h"
10
11#if defined(__cplusplus)
12extern "C" {
13#endif /* __cplusplus */
14
15MJS_PRIVATE mjs_err_t mjs_parse(const char* path, const char* buf, struct mjs*);
16
17#if defined(__cplusplus)
18}
19#endif /* __cplusplus */
20
21#endif /* MJS_PARSER_H */
Definition mjs_core.h:63