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