NAME addset - put c in array(j) if it fits, increment j SYNOPSIS stat = addset(c, array, j, maxsize) character c, array(ARB) integer j # j is incremented integer maxsize integer stat returned as YES/NO DESCRIPTION Adds a character at a time to a specified position of an array and increments the index. It also checks that there's enough room to do so. The array is an ascii character array stored one character per word. 'c' is a single ascii character. YES is returned if the routine succeeded, otherwise NO. SEE ALSO scopy, stcopy, addstr, concat DIAGNOSTICS None