1
2
3
4
5
6
7
8
9gd_tell64(3) GETDATA gd_tell64(3)
10
11
12
14 gd_tell64 — 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_tell64(DIRFILE *dirfile, const char *field_code);
23
24
26 This version of gd_tell(3) uses an exmplicitly 64-bit offset type
27 (gd_off64_t), regardless of the size of off_t. It is only guaranteed
28 to be available if GD_64BIT_API is defined before including getdata.h.
29
30 If off_t is a 64-bit type, this function will the same as gd_tell(3).
31 Otherwise, gd_tell(3) will be a version of this function which uses a
32 32-bit off_t.
33
34
36 gd_tell(3)
37
38
39
40Version 0.10.0 25 December 2016 gd_tell64(3)