1\" Generated by c2man from tsv_read_field.c
2.TH tsv_read_field 3
3
4.SH LIBRARY
5\" Indicate #includes, library name, -L and -l flags
6#include <xtend/dsv.h>
7-lbiolibc
8
9\" Convention:
10\" Underline anything that is typed verbatim - commands, etc.
11.SH SYNOPSIS
12.PP
13int     tsv_read_field(FILE *stream, char buff[], size_t buff_size,
14size_t *len)
15
16.SH ARGUMENTS
17.nf
18.na
19stream:     FILE stream from which field is read
20buff:       Character buff into which field is copied
21buff_size:  Size of the array passed to buff
22len:        Pointer to a variable which will receive the field length
23.ad
24.fi
25
26.SH DESCRIPTION
27
28Equivalent to dsv_read_field(stream, buff, buff_size, '\\t', len)
29
30.SH SEE ALSO
31
32dsv_read_field(3)
33