mirror of
https://github.com/janet-lang/janet
synced 2025-04-13 14:23:11 +00:00
15 lines
296 B
C
15 lines
296 B
C
#ifndef GST_STRINGCACHE_defined
|
|
#define GST_STRINGCACHE_defined
|
|
|
|
#include <gst/gst.h>
|
|
|
|
/****/
|
|
/* String Cache (move internal) */
|
|
/****/
|
|
|
|
void gst_stringcache_init(Gst *vm, uint32_t capacity);
|
|
void gst_stringcache_deinit(Gst *vm);
|
|
void gst_stringcache_remove(Gst *vm, const uint8_t *str);
|
|
|
|
#endif
|