Lines Matching +defs:temp +defs:string
1247 { "-name string", "client instance, icon, and title strings" },
1249 { "-class string", "class string (XTerm)" },
1250 { "-title string", "title string" },
1345 { "-tm string", "terminal mode keywords and characters" },
1379 { "-T string", "title name for window" },
1380 { "-n string", "icon name for window" },
1564 char *string = *ptr;
1567 TRACE(("decode_keyvalue '%s'\n", string));
1568 if (*string == '^') {
1569 switch (*++string) {
1580 value = CONTROL(*string);
1583 ++string;
1584 } else if (termcap && (*string == '\\')) {
1585 char *s = (string + 1);
1587 int temp = (int) strtol(s, &d, 8);
1588 if (PartS2L(s, d) && temp > 0) {
1589 value = temp;
1590 string = d;
1593 value = CharOf(*string);
1594 ++string;
1596 *ptr = string;
1650 #define isOption(string) (Boolean)((string)[0] == '-' || (string)[0] == '+')
1824 int len = 3 + (int) strlen(opt->opt); /* space [ string ] */
4920 /* why are we copying this string again? (see above) */
5679 char *temp;
5694 temp = ptr1;
5696 ptr2 = temp;
5705 temp = newtc + i;
5706 sprintf(temp, "%d", (li_first
5709 temp += strlen(temp);
5711 strncpy(temp, ptr1, i = (size_t) (ptr2 - ptr1));
5712 temp += i;
5713 sprintf(temp, "%d", (li_first
5717 strcat(temp, ptr2);
5943 #include <string.h>