add -a flag
[unix-history] / usr / src / usr.bin / f77 / libF77 / lnblnk_.c
/*
* Copyright (c) 1980 Regents of the University of California.
* All rights reserved. The Berkeley software License Agreement
* specifies the terms and conditions for redistribution.
*
* @(#)lnblnk_.c 5.2 %G%
*
* find last occurrence of a non-blank character in string
*
* calling sequence:
* character*(*) string
* indx = lnblnk (string)
* where:
* indx will be the index of the last occurence
* of a non-blank character in string, or zero if not found.
*/
long lnblnk_(str, slen)
char *str; long slen;
{
register char *p = str + slen;
while (--p >= str && *p == ' ' ) ;
return((long)(++p - str));
}