From 76800553da3a1a577dbfeb7f5298ae56c2694a55 Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Fri, 30 Dec 2011 00:42:36 +0100 Subject: [PATCH] Clarified comment about typedef struct _FILE FILE. --- libmaxsi/c/decl/FILE.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/libmaxsi/c/decl/FILE.h b/libmaxsi/c/decl/FILE.h index 29c9b6c5..6ab5fd24 100644 --- a/libmaxsi/c/decl/FILE.h +++ b/libmaxsi/c/decl/FILE.h @@ -7,9 +7,8 @@ typedef struct _FILE { /* 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 - to customize how it works. Do not call or use these data structures, - though, as the standard library library may do various kinds of buffering - and locale/encoding conversion. */ + to customize how it works. Don't call the functions directly, though, as + the standard library does various kinds of buffering and conversion. */ size_t buffersize; char* buffer; void* user;