source: trunk/pgm01/ltrim.f @ 1

Last change on this file since 1 was 1, checked in by cbipsl, 18 years ago

Geisa inital import

File size: 301 bytes
Line 
1      integer function ltrim(chaine)
2*     
3      character*(*) chaine
4*     
5      long = len(chaine)
6*     
7      ltrim = 0
8*     
9      do i=long,1,-1
10        if (chaine(i:i).ne.' ') then
11          ltrim= i
12          goto 10
13        end if
14      end do
15*     
16 10   continue
17*     
18      end
Note: See TracBrowser for help on using the repository browser.