mirror of
https://github.com/irssi/irssi.git
synced 2025-02-02 15:08:01 -05:00
11 lines
239 B
C
11 lines
239 B
C
#ifndef IRSSI_CORE_REFSTRINGS_H
|
|
#define IRSSI_CORE_REFSTRINGS_H
|
|
|
|
void i_refstr_init(void);
|
|
char *i_refstr_intern(const char *str);
|
|
void i_refstr_release(char *str);
|
|
void i_refstr_deinit(void);
|
|
char *i_refstr_table_size_info(void);
|
|
|
|
#endif
|