1
0
mirror of https://github.com/janet-lang/janet synced 2024-09-30 16:00:40 +00:00
janet/core/stringcache.h

15 lines
296 B
C
Raw Normal View History

2017-03-22 04:27:18 +00:00
#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);
2017-03-22 04:27:18 +00:00
#endif