Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {
- char *separator = "";
- char *ret = "";
- for (int i = 0; i < rows; ++i)
- {
- ret = x_gc_strjoin (ret, separator, strings[i].u.md_str);
- separator = " ";
- }
- gld->ret = GlyphNameListDeUnicode (ret);
- /*
- char **names = (char **) xzalloc (rows * sizeof (char *));
- char *ret;
- for (int i = 0; i < rows; ++i)
- names[i] = g_strdup (strings[i].u.md_str);
- names[rows] = NULL;
- ret = g_strjoinv (" ", names);
- gld->ret = GlyphNameListDeUnicode (ret);
- g_free (ret);
- g_strfreev (names);
- */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement