| Syntax 
   external-function  function-name
 
 Purpose
 
 An external-functionoperator is used in an external function association inquiry. In an OmniMark program, an external-functionis a name which is associated with an externally defined (non-OmniMark) function. The external function can have a different name in the external function library than its assigned OmniMark name. Anexternal-functionassociation inquiry allows the programmer to access the external name of the external-function associated with an OmniMark external function name. For example, the following code illustrates how external-functionandfunction-library of external-functioncan be used to query a function and return a string value containing either the external function name or the library name:
   output "For external function %"get-db-record%",%n" _
         "    external name = %"" ||
         external-function get-db-record ||
         "%",%n" _
         "    function library name = %"" ||
         function-library of external-function get-db-record ||
         "%".%n"
 |