I am working on a new API for reading GRIB2 files - part of an open-source library for meteorologists and climate scientists.
The library needs to handle 64-bit integers (in addition to 8, 16, and 32 bit integers). Signed and unsigned integer types must be handled.
In the netcdf-c library, we use unsigned long long:
int
nc_put_att_ulonglong(int ncid, int varid, const char *name, nc_type xtype,
size_t len, const unsigned long long *op);
But we also sometimes use size_t:
int
nc_inq_grpname_full(int ncid, size_t *lenp, char *full_name);
Even though I wrote that function, I can't remember why I chose size_t instead of unsigned long long. ;-)
In writing a library for general use, is there a good reason to prefer size_t to unsigned long long?
And now that I am writing a new API, should I use the uint64_t type? It seems most suitable for representing something that is actually 64 bits in the data file.
I prefer
size_t
tounsigned long long
becausesize_t
is more compact andunsigned long long
is also a bit confusing. I preferuint64_t
tosize_t
becauseuint64_t
is more precise.