Home | History | Annotate | Download | only in libmenu

Lines Matching refs:description

43 	{NULL, 0}, /* item description struct */
85 * Return the pointer to the item description
93 return item->description.string;
283 new_item(char *name, char *description)
309 if (description == NULL)
310 new_one->description.length = 0;
312 /* fill in the description structure, stash the length then
313 allocate room for description string and copy it in */
314 new_one->description.length = strlen(description);
315 if ((new_one->description.string =
317 new_one->description.length + 1)) == NULL) {
327 strcpy(new_one->description.string, description);
348 if (item->description.length)
349 free(item->description.string);