clear_msg Subroutine

private subroutine clear_msg(msg)

Arguments

Type IntentOptional Attributes Name
character(len=msg_len), intent(inout) :: msg

Called by

proc~~clear_msg~~CalledByGraph proc~clear_msg clear_msg proc~read_gmsh_msh1_element read_gmsh_msh1_element proc~read_gmsh_msh1_element->proc~clear_msg proc~read_gmsh_msh1_file read_gmsh_msh1_file proc~read_gmsh_msh1_file->proc~clear_msg proc~read_gmsh_msh1_file_kernel read_gmsh_msh1_file_kernel proc~read_gmsh_msh1_file->proc~read_gmsh_msh1_file_kernel proc~read_gmsh_msh1_node read_gmsh_msh1_node proc~read_gmsh_msh1_node->proc~clear_msg proc~read_gmsh_msh1_file_kernel->proc~read_gmsh_msh1_element proc~read_gmsh_msh1_file_kernel->proc~read_gmsh_msh1_node

Source Code

    subroutine clear_msg(msg)

        character(len = msg_len), intent(inout) :: msg

        msg(:) = repeat( ' ' , msg_len )

    end subroutine clear_msg