Lines Matching defs:string
37 #include <string.h>
436 // Convert the specified Latin-1 string to UTF-8
954 // string into a window property and then read it back, just return it
1008 char* string = NULL;
1037 string = _glfw_realloc(string, size);
1038 string[size - itemCount - 1] = '\0';
1039 strcat(string, data);
1044 if (string)
1048 *selectionString = convertLatin1toUTF8(string);
1049 _glfw_free(string);
1052 *selectionString = string;
1076 "X11: Failed to convert selection to string");
3063 void _glfwSetClipboardStringX11(const char* string)
3065 char* copy = _glfw_strdup(string);
3319 GLFWAPI void glfwSetX11SelectionString(const char* string)
3321 assert(string != NULL);
3332 _glfw.x11.primarySelectionString = _glfw_strdup(string);