You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by GitBox <gi...@apache.org> on 2021/07/21 13:47:30 UTC

[GitHub] [incubator-nuttx] patacongo edited a comment on pull request #4193: fs: Change off_t and related types to int64_t if long long is supported

patacongo edited a comment on pull request #4193:
URL: https://github.com/apache/incubator-nuttx/pull/4193#issuecomment-884201118


   Another issue is that some of the older file system APIs do not use off_t but instead `long int` to represent file position.  For example:
   
       stdio.h:long   ftell(FAR FILE *stream);
       stdio.h:off_t  ftello(FAR FILE *stream);
   
   Also:
   
       stdio.h:int    fseek(FAR FILE *stream, long int offset, int whence);
       stdio.h:int    fseeko(FAR FILE *stream, off_t offset, int whence);
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@nuttx.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org