Lines Matching defs:string
32 #include <string.h>
48 * Match the passed command string and execute the associated test
116 char *string;
119 asprintf(&string, "NULL");
121 asprintf(&string, "%p", ptr);
122 report_status(string);
123 free(string);
132 char *string;
134 asprintf(&string, "%d", value);
135 report_status(string);
136 free(string);
202 chtype string[2];
204 string[0] = c;
205 string[1] = A_NORMAL | '\0';
206 report_nstr(string);
210 * Report a string of chtype back to the director via the command pipe.
213 report_nstr(chtype *string)
218 for (p = string; (*p & __CHARTEXT) != 0; p++)
221 size = (size_t)(p + 1 - string) * sizeof(*p);
225 write_to_director(string, size);
255 * Report a string of wchar_t back to the director via the command pipe.