mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Clarified comment about typedef struct _FILE FILE.
This commit is contained in:
parent
064b69d2b6
commit
76800553da
1 changed files with 2 additions and 3 deletions
|
@ -7,9 +7,8 @@ typedef struct _FILE
|
||||||
{
|
{
|
||||||
/* This is non-standard, but useful. If you allocate your own FILE and
|
/* This is non-standard, but useful. If you allocate your own FILE and
|
||||||
register it with fregister, feel free to use modify the following members
|
register it with fregister, feel free to use modify the following members
|
||||||
to customize how it works. Do not call or use these data structures,
|
to customize how it works. Don't call the functions directly, though, as
|
||||||
though, as the standard library library may do various kinds of buffering
|
the standard library does various kinds of buffering and conversion. */
|
||||||
and locale/encoding conversion. */
|
|
||||||
size_t buffersize;
|
size_t buffersize;
|
||||||
char* buffer;
|
char* buffer;
|
||||||
void* user;
|
void* user;
|
||||||
|
|
Loading…
Add table
Reference in a new issue