-- -- -------------------------------------------------------------------------------- -- -- OSI_Utilities -- -- This package exports routines used by other OSI packages. -- -- -- -- -- Gerardo A. Colon -- 28 August 1990 -- -- Science Applications International Corporation --
311 Park Place Boulevard, Suite 360 --
Clearwater, Florida 34619 -- -- Developed for the STARS program under task S40. -- -- -- -- -- Dependencies => -- ( Operating_System => None , -- Compiler => None , -- Device => None ) ; -- -- -------------------------------------------------------------------------------- with OSI_Interface_Definitions ; with OSI_Standard ; use OSI_Interface_Definitions ; use OSI_Standard ; pragma Page ; -------------------------------------------------------------------------------- -- package OSI_Utilities (specification). -------------------------------------------------------------------------------- package OSI_Utilities is function Is_Valid ( File_Name : in OSI_String ) return Boolean ; -------------------------------------------------------------------------------- -- -- Is_Valid -- -- This function returns True is the file name given by the -- parameter File_Name is valid. The function returns False -- otherwise. -- -- None. -- -- -------------------------------------------------------------------------------- function String_Of ( The_Pointer : String_Pointer ) return String ; -------------------------------------------------------------------------------- -- -- String_Of -- -- This function returns the string pointed by the pointer given -- by The_Pointer. -- -- None. -- -- -------------------------------------------------------------------------------- end OSI_Utilities ; --