1 /* 2 * Copyright (C) 2015-2020 Alibaba Group Holding Limited 3 */ 4 #ifndef __LIBJS_H 5 #define __LIBJS_H 6 7 #include <stdio.h> 8 #include <string.h> 9 10 #ifdef JSE_HIGHLEVEL_JSAPI 11 12 typedef struct { 13 char *name; 14 char *content; 15 }libjs_entry_t; 16 17 extern libjs_entry_t LIBJS_ENTRIES[]; 18 extern int libjs_num; 19 20 #endif /* JSE_HIGHLEVEL_JSAPI */ 21 #endif /* __LIBJS_H */