diff options
author | obrien <obrien@FreeBSD.org> | 1999-09-18 10:51:31 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1999-09-18 10:51:31 +0000 |
commit | 98e51635e2084da6cfe0d3b1782cb95b80fd2caa (patch) | |
tree | 0938eb35cebcf917f447463078144fc4832576c6 /contrib/libf2c/libF77/s_cat.c | |
parent | 0bedf4fb30066e5e1d4342a1d3914dae7d37cba7 (diff) | |
download | FreeBSD-src-98e51635e2084da6cfe0d3b1782cb95b80fd2caa.zip FreeBSD-src-98e51635e2084da6cfe0d3b1782cb95b80fd2caa.tar.gz |
Virgin import of EGCS 1.1.2's libf2c
Diffstat (limited to 'contrib/libf2c/libF77/s_cat.c')
-rw-r--r-- | contrib/libf2c/libF77/s_cat.c | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/contrib/libf2c/libF77/s_cat.c b/contrib/libf2c/libF77/s_cat.c new file mode 100644 index 0000000..f462fd2 --- /dev/null +++ b/contrib/libf2c/libF77/s_cat.c @@ -0,0 +1,75 @@ +/* Unless compiled with -DNO_OVERWRITE, this variant of s_cat allows the + * target of a concatenation to appear on its right-hand side (contrary + * to the Fortran 77 Standard, but in accordance with Fortran 90). + */ + +#include "f2c.h" +#ifndef NO_OVERWRITE +#include <stdio.h> +#undef abs +#ifdef KR_headers + extern char *F77_aloc(); + extern void free(); + extern void G77_exit_0 (); +#else +#undef min +#undef max +#include <stdlib.h> + extern char *F77_aloc(ftnlen, char*); +#endif +#include <string.h> +#endif /* NO_OVERWRITE */ + + VOID +#ifdef KR_headers +s_cat(lp, rpp, rnp, np, ll) char *lp, *rpp[]; ftnlen rnp[], *np, ll; +#else +s_cat(char *lp, char *rpp[], ftnlen rnp[], ftnlen *np, ftnlen ll) +#endif +{ + ftnlen i, nc; + char *rp; + ftnlen n = *np; +#ifndef NO_OVERWRITE + ftnlen L, m; + char *lp0, *lp1; + + lp0 = 0; + lp1 = lp; + L = ll; + i = 0; + while(i < n) { + rp = rpp[i]; + m = rnp[i++]; + if (rp >= lp1 || rp + m <= lp) { + if ((L -= m) <= 0) { + n = i; + break; + } + lp1 += m; + continue; + } + lp0 = lp; + lp = lp1 = F77_aloc(L = ll, "s_cat"); + break; + } + lp1 = lp; +#endif /* NO_OVERWRITE */ + for(i = 0 ; i < n ; ++i) { + nc = ll; + if(rnp[i] < nc) + nc = rnp[i]; + ll -= nc; + rp = rpp[i]; + while(--nc >= 0) + *lp++ = *rp++; + } + while(--ll >= 0) + *lp++ = ' '; +#ifndef NO_OVERWRITE + if (lp0) { + memcpy(lp0, lp1, L); + free(lp1); + } +#endif + } |