libsim Versione 7.2.0

◆ uppercase()

character( len( input_string ) ) function, public uppercase ( character( * ), intent(in)  input_string)

Convert a CHARACTER variable to uppercase.

Parametri
[in]input_stringvariable to be converted

Definizione alla linea 803 del file char_utilities.F90.

804
805IF (PRESENT(ncols)) THEN
806 this%ncols = ncols
807ELSE
808 this%ncols = default_columns()
809ENDIF
810! split the input line
811nwords = word_split(line, this%word_start, this%word_end)
812! count the lines required to accomodate the input line in a paragraph
813nlines = 0
814nw = 0
815DO WHILE(nw < nwords)
816 columns_in_line = 0
817 words_in_line = 0

Generated with Doxygen.