Lines Matching defs:linebuf
1055 * linebuf buffer to decode into.
1056 * bufsize size of linebuf.
1061 mime_decode_hfield(char *linebuf, size_t bufsize, const char *hdrline, char *srcstr)
1066 decode(linebuf, bufsize, srcstr);
1067 return linebuf;
1084 get_folded_hfield(FILE *f, char *linebuf, size_t bufsize, char **colon)
1099 (void)memcpy(linebuf, cp, len);
1100 *colon = *cp2 == ':' ? linebuf + (cp2 - cp) : NULL;
1101 line = linebuf + len;
1124 char linebuf[LINESIZE];
1129 while (get_folded_hfield(fi, linebuf, sizeof(linebuf), &colon) >= 0) {
1132 hdrstr = linebuf;