NAME

catstr - string concatenation

SYNOPSIS

#include <basic/string.h>

struct string catstr(s, t)
struct string *s, *t;

DESCRIPTION

Catstr allocates and returns a string which is the concatenation of the strings pointed to by s and t

This function implements string concatenation. 

SEE ALSO

string(inc)

DIAGNOSTICS

Error 5 (Illegal function call) is generated if the resultant string would be too long (if the string would have length greater than 32767). 

from The Basmark QuickBASIC Programmer’s Manual by Lawrence Leinweber