2023-05-01 16:24:56 +00:00
|
|
|
#ifndef COMMON_H
|
|
|
|
#define COMMON_H
|
2023-05-01 21:02:43 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#endif
|
|
|
|
|
2023-05-01 16:24:56 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2023-05-03 22:01:55 +00:00
|
|
|
#include <string.h>
|
2023-05-01 16:24:56 +00:00
|
|
|
|
2023-05-26 11:28:53 +00:00
|
|
|
int app_run_quickjs(int argc, char** argv);
|
2023-05-01 16:24:56 +00:00
|
|
|
int app_update_quickjs();
|
|
|
|
|
2023-05-01 21:02:43 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2023-05-01 16:24:56 +00:00
|
|
|
#endif
|