mirror of
https://github.com/D4C1-Labs/Flipper-ARF.git
synced 2026-03-30 23:45:48 +00:00
22 lines
373 B
C
22 lines
373 B
C
/*
|
|
* Copyright (c) 2016 Cesanta Software Limited
|
|
* All rights reserved
|
|
*/
|
|
|
|
#ifndef MJS_PARSER_H
|
|
#define MJS_PARSER_H
|
|
|
|
#include "mjs_internal.h"
|
|
|
|
#if defined(__cplusplus)
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
|
|
MJS_PRIVATE mjs_err_t mjs_parse(const char* path, const char* buf, struct mjs*);
|
|
|
|
#if defined(__cplusplus)
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
#endif /* MJS_PARSER_H */
|