1
2
3
4
5
6
7
8
9gd_nframes64(3) GETDATA gd_nframes64(3)
10
11
12
14 gd_nframes64 — report the size of a Dirfile, with largefile support
15
16
18 #define GD_64BIT_API
19 #include <getdata.h>
20
21 gd_off64_t gd_nframes64(DIRFILE *dirfile);
22
23
25 This version of gd_nframes(3) uses a 64-bit offset type (gd_off64_t),
26 where one is available, regardless of the size of off_t. It is only
27 guaranteed to be available if GD_64BIT_API is defined before including
28 getdata.h.
29
30 If off_t is a 64-bit type, this function will the same as
31 gd_nframes(3). Otherwise, gd_nframes(3) will be a version of this
32 function which uses a 32-bit off_t.
33
34
36 gd_nframes(3), feature_test_macros(7)
37
38
39
40Version 0.10.0 25 December 2016 gd_nframes64(3)