1
2
3
4
5
6
7
8
9gd_seek64(3) GETDATA gd_seek64(3)
10
11
12
14 gd_seek64 — retrieve data from a Dirfile database, with largefile sup‐
15 port
16
17
19 #define GD_64BIT_API
20 #include <getdata.h>
21
22 gd_off64_t gd_seek64(DIRFILE *dirfile, const char *field_code,
23 gd_off64_t frame_num, gd_off64_t sample_num, int flags);
24
25
27 This version of gd_seek(3) uses an explicitly 64-bit offset type
28 (gd_off64_t), regardless of the size of off_t. It is only guaranteed
29 to be available if one defines GD_64BIT_API before including getdata.h.
30
31 If off_t is a 64-bit type, this function will the same as gd_seek(3).
32 Otherwise, gd_seek(3) will be a version of this function which uses a
33 32-bit off_t.
34
35
37 gd_seek(3)
38
39
40
41Version 0.10.0 25 December 2016 gd_seek64(3)