X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=internals%2F_PDCLIB_int.h;h=5d503ccc120ea7152a8895b3ca5f17eac94ea706;hp=d84cc69d6b011234c011856c08186d11fcdcc942;hb=66c9a724d570ec507c640f6708fe48c4b8ca8b80;hpb=f8dfae46eb161173a4460a98075669e810c8bb7b diff --git a/internals/_PDCLIB_int.h b/internals/_PDCLIB_int.h index d84cc69..5d503cc 100644 --- a/internals/_PDCLIB_int.h +++ b/internals/_PDCLIB_int.h @@ -270,9 +270,9 @@ struct _PDCLIB_file_t _PDCLIB_fpos_t position; /* file position indicator */ char * buffer; /* file buffer */ _PDCLIB_size_t bufsize; /* size of buffer */ - _PDCLIB_size_t bufidx; /* pointer into buffer */ + _PDCLIB_size_t bufidx; /* index to point of action in buffer */ + _PDCLIB_size_t bufend; /* index to end of pre-read buffer */ unsigned int status; /* misc. status bits */ - /*mbstate_t mbstate; multibyte parse state - TODO: Unmask. */ struct _PDCLIB_file_t * next; /* provisions for linked list handling */ };