Debian – Will SEEK_SET SEEK_CUR SEEK_END not be 0,1,2 on any C lib?
For whence parameter of fseek (or lseek in POSIX), some languages that calls C lib assume SEEK_SET, SEEK_CUR, SEEK_END are 0,1,2, respectively, such as gfortran, Nim [^py]. [^py]: while Python's seek specializes concrete values of SEEK_*, CPython does map 0,1,2…