• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  *  Copyright (c)  Huawei Technologies Co., Ltd. 2020-2020. All rights reserved.
3  *  Description:  jerry literal cache definition
4  *  Author: Harmony OS Software group
5  *  Create: 2020-11-19
6  */
7 #ifndef JERRY_LITERAL_CACHE_H
8 #define JERRY_LITERAL_CACHE_H
9 
10 #include <stdint.h>
11 
12 void InitJerryLiteralCache(void);
13 
14 void ClearJerryLiteralCache(void);
15 
16 void AddJerryLiteralCache(int32_t hash, void *p);
17 
18 void DelJerryLiteralCache(int32_t hash);
19 
20 void *GetJerryLiteralCache(int32_t hash);
21 #endif