blob: 777174a39d0f1ef1b592e75c83e50741a6fe2853 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
# STRCAT -- String concatenation. String STR is appended to OUTSTR.
procedure strcat (str, outstr, maxch)
char str[ARB], outstr[ARB]
int maxch, junk, gstrcat()
begin
junk = gstrcat (str, outstr, maxch)
end
|