External.module



-- Copyright (C) International Computer Science Institute, 1995.  COPYRIGHT  --
-- NOTICE: This code is provided "AS IS" WITHOUT ANY WARRANTY and is subject --
-- to the terms of the SATHER LIBRARY GENERAL PUBLIC LICENSE contained in    --
-- the file "Doc/License" of the Sather distribution.  The license is also   --
-- available from ICSI, 1947 Center St., Suite 600, Berkeley CA 94704, USA.  --
--------> Please email comments to "sather-bugs@icsi.berkeley.edu". <----------

(* EXTERNAL INTERFACE TO OTHER LANGUAGES CLASSES

External classes are used to interface with code from other languages
(see the 1.1 Sather spec). In particular, 1.1 spec defines external
interface to C and FORTRAN.

FORTRAN scalar types F_INTEGER, F_REAL, F_LOGICAL, F_CHARACTER,
F_DOUBLE, F_COMPLEX, F_DOUBLE_COMPLEX,  are built in. FORTRAN array
types F_INTEGER_ARR and F_REAL_ARR are currently not built in (may
change).

A complete description of the external Sather types can be found
in the language specification, which is in the Doc directory of
the Sather installation.

*)


	
	fortran.sa -has fortran.sa F_INTEGER F_REAL F_CHARACTER F_LOGICAL F_DOUBLE F_COMPLEX F_DOUBLE_COMPLEX F_HANDLER F_STRING F_ARRAY F_ARRAY2 F_ARRAY3 
	bind_fortran.sa -has bind_fortran.sa BIND_FORTRAN

       c.sa -has c.sa C_CHAR C_UNSIGNED_CHAR C_SIGNED_CHAR C_SHORT C_INT C_LONG C_UNSIGNED_SHORT C_UNSIGNED_INT C_UNSIGNED_LONG C_FLOAT C_DOUBLE C_LONG_DOUBLE 
       c_ptr.sa -has c_ptr.sa C_PTR
       c_pointer_types.sa -has c_pointer_types.sa C_CHAR_PTR C_UNSIGNED_CHAR_PTR C_SIGNED_CHAR_PTR C_SHORT_PTR C_INT_PTR C_LONG_PTR C_UNSIGNED_SHORT_PTR C_UNSIGNED_INT_PTR C_UNSIGNED_LONG_PTR C_FLOAT_PTR C_DOUBLE_PTR C_LONG_DOUBLE_PTR C_SIZE_T C_PTRDIFF_T