1/* 2 3Copyright 1989, 1998 The Open Group 4 5Permission to use, copy, modify, distribute, and sell this software and its 6documentation for any purpose is hereby granted without fee, provided that 7the above copyright notice appear in all copies and that both that 8copyright notice and this permission notice appear in supporting 9documentation. 10 11The above copyright notice and this permission notice shall be included in 12all copies or substantial portions of the Software. 13 14THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 17OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN 18AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 19CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 20 21Except as contained in this notice, the name of The Open Group shall not be 22used in advertising or otherwise to promote the sale, use or other dealings 23in this Software without prior written authorization from The Open Group. 24 25*/ 26 27#ifdef HAVE_CONFIG_H 28#include <config.h> 29#endif 30#include <X11/Xlibint.h> 31#include <X11/Xatom.h> 32#include <X11/Xutil.h> 33 34/* 35 * XStringListToTextProperty - fill in TextProperty structure with 36 * concatenated list of null-separated strings. Return True if successful 37 * else False. Allocate room on end for trailing NULL, but don't include in 38 * count. 39 */ 40 41Status XStringListToTextProperty ( 42 char **argv, 43 int argc, 44 XTextProperty *textprop) 45{ 46 register int i; 47 register unsigned int nbytes; 48 XTextProperty proto; 49 50 /* figure out how much space we'll need for this list */ 51 for (i = 0, nbytes = 0; i < argc; i++) { 52 nbytes += (unsigned) ((argv[i] ? strlen (argv[i]) : 0) + 1); 53 } 54 55 /* fill in a prototype containing results so far */ 56 proto.encoding = XA_STRING; 57 proto.format = 8; 58 if (nbytes) 59 proto.nitems = nbytes - 1; /* subtract one for trailing <NUL> */ 60 else 61 proto.nitems = 0; 62 proto.value = NULL; 63 64 /* build concatenated list of strings */ 65 if (nbytes > 0) { 66 register char *buf = Xmalloc (nbytes); 67 if (!buf) return False; 68 69 proto.value = (unsigned char *) buf; 70 for (i = 0; i < argc; i++) { 71 char *arg = argv[i]; 72 73 if (arg) { 74 (void) strcpy (buf, arg); 75 buf += (strlen (arg) + 1); 76 } else { 77 *buf++ = '\0'; 78 } 79 } 80 } else { 81 proto.value = Xmalloc (1); /* easier for client */ 82 if (!proto.value) return False; 83 84 proto.value[0] = '\0'; 85 } 86 87 /* we were successful, so set return value */ 88 *textprop = proto; 89 return True; 90} 91