OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
ani_txt.F File Reference
#include "implicit_f.inc"

Go to the source code of this file.

Functions/Subroutines

subroutine ani_txt (text, len)
subroutine ani_txt50 (text, len)

Function/Subroutine Documentation

◆ ani_txt()

subroutine ani_txt ( character*80 text,
integer len )

Definition at line 29 of file ani_txt.F.

30C-----------------------------------------------
31C I m p l i c i t T y p e s
32C-----------------------------------------------
33#include "implicit_f.inc"
34C-----------------------------------------------
35C D u m m y A r g u m e n t s
36C-----------------------------------------------
37 CHARACTER*80 TEXT
38 INTEGER LEN
39C-----------------------------------------------
40C L o c a l V a r i a b l e s
41C-----------------------------------------------
42 INTEGER CTEXT(81),I
43C
44 DO i=1,len
45 ctext(i)=ichar(text(i:i))
46 ENDDO
47 ctext(len+1)=0
48C
49 CALL write_c_c(ctext,81)
50C
51 RETURN
void write_c_c(int *w, int *len)

◆ ani_txt50()

subroutine ani_txt50 ( character*80 text,
integer len )

Definition at line 60 of file ani_txt.F.

61C-----------------------------------------------
62C I m p l i c i t T y p e s
63C-----------------------------------------------
64#include "implicit_f.inc"
65C-----------------------------------------------
66C D u m m y A r g u m e n t s
67C-----------------------------------------------
68 CHARACTER*80 TEXT
69 INTEGER LEN
70C-----------------------------------------------
71C L o c a l V a r i a b l e s
72C-----------------------------------------------
73 INTEGER CTEXT(81),I
74C
75 DO i=1,len
76 ctext(i)=ichar(text(i:i))
77 ENDDO
78 ctext(len+1)=0
79C
80 CALL write_c_c(ctext,50)
81C
82 RETURN