This function returns the string in the line which starts with the specified key string in the text returned from print_self_status. The key string itself is excluded from the returned string. If the specified key is not found in the text an empty string will be returned.
function tem_create_EndianSuffix() result(suffix) ! --------------------------------------------------------------------------- character(len=4) :: suffix ! --------------------------------------------------------------------------- if (isLittleEndian) then suffix = '.lsb' else suffix = '.msb' end if end function tem_create_endianSuffix