Lines Matching defs:str
4 #include "str.h"
49 static void strip_lwsp(char *str)
55 while (*str != ' ' && *str != '\t' && *str != '\r' && *str != '\n') {
56 if (*str == '\0')
58 str++;
61 for (dest = str; *str != '\0'; str++) {
62 if (*str != ' ' && *str != '\t' && *str != '\r' && *str != '\n')
63 *dest++ = *str;
72 string_t *str = NULL;
120 if (str == NULL) {
123 str = t_str_new(256);
125 if (get_untokenized_msgid(msgid_p, str))
126 return str_c(str);