Go to the source code of this file.
Functions | |
| int | lnblnk_ (char *chline, int len) |
|
||||||||||||
|
Definition at line 30 of file allgs/lnblnk.c. References chline. 00036 {
00037 char *chcur;
00038
00039 chcur = chline + len;
00040 while (chcur > chline)
00041 { if (*--chcur != ' ') goto exit; }
00042 return 0;
00043
00044 exit: return chcur+1 - chline;
00045 }
|
1.3.9.1