Zrythm
a highly automated and intuitive digital audio workstation
|
String array that auto-converts given char pointers to UTF8 (so JUCE doesn't complain. More...
#include <utils/string.h>
Public Member Functions | |
StringArray (const char *const *strs) | |
char ** | getNullTerminated () const |
Returns the strings in a newly-allocated NULL-terminated array. | |
void | insert (int index, const char *s) |
void | add (const char *s) |
void | set (int index, const char *s) |
char * | getCStr (int index) |
const char * | operator[] (size_t i) |
void | removeString (const char *s) |
String array that auto-converts given char pointers to UTF8 (so JUCE doesn't complain.
char ** StringArray::getNullTerminated | ( | ) | const |
Returns the strings in a newly-allocated NULL-terminated array.
To be used for C APIs.
|
inline |