rayjs/src/common.h

18 lines
239 B
C

#ifndef COMMON_H
#define COMMON_H
#ifdef __cplusplus
extern "C"
{
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int app_run_quickjs(int argc, char** argv);
int app_update_quickjs();
#ifdef __cplusplus
}
#endif
#endif