dsekai
World engine for retrocomputers.
Loading...
Searching...
No Matches
strpool.h
Go to the documentation of this file.
1
2#ifndef STRPOOL_H
3#define STRPOOL_H
4
40int16_t strpool_get_sz( const char* str_in );
41
47void strpool_init( char* strpool, int16_t strpool_sz );
48
49int16_t strpool_add_string( char* strpool, char* string, int16_t string_sz );
50
51const char* strpool_get( const char* strpool, int16_t idx, int16_t* sz_out );
52
53/* \} */
54
55#endif /* !STRPOOL_H */
56
int16_t strpool_get_sz(const char *str_in)
Get the size of a string pool or contained string.
Definition: strpool.c:4
void strpool_init(char *strpool, int16_t strpool_sz)
Prepare a string pool for use.
Definition: strpool.c:14