1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
5 -- I N T E R F A C E S . C _ S T R E A M S --
10 -- Copyright (C) 1996-2001 Free Software Foundation, Inc. --
12 -- GNAT is free software; you can redistribute it and/or modify it under --
13 -- terms of the GNU General Public License as published by the Free Soft- --
14 -- ware Foundation; either version 2, or (at your option) any later ver- --
15 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
16 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
17 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
18 -- for more details. You should have received a copy of the GNU General --
19 -- Public License distributed with GNAT; see file COPYING. If not, write --
20 -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
21 -- MA 02111-1307, USA. --
23 -- As a special exception, if other files instantiate generics from this --
24 -- unit, or you link this unit with other files to produce an executable, --
25 -- this unit does not by itself cause the resulting executable to be --
26 -- covered by the GNU General Public License. This exception does not --
27 -- however invalidate any other reasons why the executable file might be --
28 -- covered by the GNU Public License. --
30 -- GNAT was originally developed by the GNAT team at New York University. --
31 -- It is now maintained by Ada Core Technologies Inc (http://www.gnat.com). --
33 ------------------------------------------------------------------------------
35 -- This is the default version which just calls the C versions directly
36 -- Note: the reason that we provide for specialization here is that on
37 -- some systems, notably VMS, we may need to worry about buffering.
39 with Unchecked_Conversion
;
41 package body Interfaces
.C_Streams
is
60 pragma Import
(C
, C_fread
, "fread");
63 return C_fread
(buffer
, size
, count
, stream
);
84 pragma Import
(C
, C_fread
, "fread");
86 type Byte_Buffer
is array (0 .. size_t
'Last / 2 - 1) of Unsigned_8
;
87 -- This should really be 0 .. size_t'last, but there is a problem
88 -- in gigi in handling such types (introduced in GCC 3 Sep 2001)
89 -- since the size in bytes of this array overflows ???
91 type Acc_Bytes
is access all Byte_Buffer
;
93 function To_Acc_Bytes
is new Unchecked_Conversion
(voids
, Acc_Bytes
);
97 (To_Acc_Bytes
(buffer
) (index
* size
)'Address, size
, count
, stream
);
117 pragma Import
(C
, C_fwrite
, "fwrite");
120 return C_fwrite
(buffer
, size
, count
, stream
);
140 pragma Import
(C
, C_setvbuf
, "setvbuf");
143 return C_setvbuf
(stream
, buffer
, mode
, size
);
146 end Interfaces
.C_Streams
;