changeprop_string.c (289B)
1 /* Copyright ©2007-2010 Kris Maglione <maglione.k at Gmail> 2 * See LICENSE file for license details. 3 */ 4 #include <string.h> 5 #include "../x11.h" 6 7 void 8 changeprop_string(Window *w, const char *prop, const char *string) { 9 changeprop_char(w, prop, "UTF8_STRING", string, strlen(string)); 10 }