#include "implicit_f.inc"
Go to the source code of this file.
◆ ani_txt()
| subroutine ani_txt |
( |
character, dimension(80) | text, |
|
|
integer | len ) |
Definition at line 31 of file ani_txt.F.
32
33
34
35#include "implicit_f.inc"
36
37
38
39 CHARACTER TEXT(80)
40 INTEGER LEN
41
42
43
44 INTEGER CTEXT(81)
45
46 ctext(1 :
min(len,80)) = ichar(text(1:
min(len,80)))
47 ctext(len+1:81 ) = 0
48
50
51 RETURN
void write_c_c(int *w, int *len)
◆ ani_txt50()
| subroutine ani_txt50 |
( |
character, dimension(80) | text, |
|
|
integer | len ) |
Definition at line 61 of file ani_txt.F.
62
63
64
65#include "implicit_f.inc"
66
67
68
69 CHARACTER TEXT(80)
70 INTEGER LEN
71
72
73
74 INTEGER CTEXT(81)
75
76 ctext(1 :len) = ichar(text(1:len))
77 ctext(len+1:81 ) = 0
79
80 RETURN