d FUNCTION JJUPP( string ) c. Converts the STRING into upper case. ,c. c. Replaces 'a' thru 'z' with 'A' thru 'Z' respectively in the c. STRING. Xc. C======  CHARACTER*(*) string C.  DO 210 II=1,LEN(string) L IF( string(II:II).GE.'a' .AND. string(II:II).LE.'z' ) THEN  string(II:II) = CHAR(ICHAR('A')+ICHAR(string(II:II))-ICHAR('a'))  ENDIF x210 CONTINUE  RETURN @ end