1putdata64(3) GETDATA putdata64(3)
2
3
4
6 putdata64 — write data to a dirfile database with largefile support
7
9 #define _LARGEFILE64_SOURCE
10
11 #include <getdata.h>
12
13 size_t putdata64(DIRFILE *dirfile, const char *field_code, off64_t
14 first_frame, off64_t first_sample, size_t num_frames, size_t
15 num_samples, gd_type_t data_type, const void *data_out);
16
18 This version of putdata(3) uses a 64-bit offset type, even if off_t is
19 a 32-bit type. It is only available if one defines _LARGE‐
20 FILE64_SOURCE. If off_t is a 64-bit type (i.e. if _FILE_OFFSET_BITS is
21 defined to be 64), this function will be called putdata(). Otherwise,
22 putdata() will be a version of this function which uses a 32-bit off_t.
23
25 putdata(3), feature_test_macros(7)
26
27
28
29Version 0.4.0 17 October 2008 putdata64(3)