Joseph Gleason wrote: > Alright, I made a mistake. But I did read the man page. Where does it say > off_t is 64bits? The same place it says char is 8 bits, short is 16 bits, and int and long are 32 bits: in your assumptions. It might be useful (for some definitions of "useful") to have a man page which tells you the size of these things, but FreeBSD runs on architectures where these are different, so you would not be able to have one man page that does it. The correct thing to do is to use off_t when speaking of file lengths/offsets, and then let the machine support what it can support. If you simply "must" know, there's always "sizeof(off_t)". -- Terry To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message
- Finding filesizes in C++ for files greater than 4gb Joseph Gleason
- Re: Finding filesizes in C++ for files greater than ... Alfred Perlstein
- RE: Finding filesizes in C++ for files greater than ... John Baldwin
- RE: Finding filesizes in C++ for files greater than ... Daniel O'Connor
- Re: Finding filesizes in C++ for files greater than ... Warner Losh
- Re: Finding filesizes in C++ for files greater than ... Alex Zepeda
- Re: Finding filesizes in C++ for files greater than ... Joseph Gleason
- Re: Finding filesizes in C++ for files greater t... Alex Zepeda
- Re: Finding filesizes in C++ for files greater t... Terry Lambert
- Re: Finding filesizes in C++ for files greater than ... David Scheidt
- Re: Finding filesizes in C++ for files greater t... Joseph Gleason
- Re: Finding filesizes in C++ for files greater than ... Jim Bryant
- Re: Finding filesizes in C++ for files greater than ... Kent Stewart
- Re: Finding filesizes in C++ for files greater than ... Jim Bryant
- Re: Finding filesizes in C++ for files greater t... David O'Brien
- Re: Finding filesizes in C++ for files greater than ... Terry Lambert
- Re: Finding filesizes in C++ for files greater than ... Chirag Kantharia
- Re: Finding filesizes in C++ for files greater t... Greg Black
- Re: Finding filesizes in C++ for files greater t... Terry Lambert