unincat(3nw)


unincat -- copies specified number of characters from one string to end of another string

Synopsis

   #include <unicode.h> 
   

unicode N_FAR *N_API unincat (unicode N_FAR * s1, unicode N_FAR * s2, size_t n);

Description

The parameters are as follows:

s1
(OUT) Points to the original string.

s2
(IN) Points to the string to be appended.

n
(IN) Specifies the maximum number of characters to be appended.

Return values

Pointer to s1.

Notices

unincat copies at most n characters of s2 to the end of s1, then appends a null character. The maximum length of the resulting string is:
   unilen(s1)+ n 
unincat corresponds to C strncat.

Services

Unicode

NCP calls

None

References

unicat(3nw)
30 January 1998
© 1998 The Santa Cruz Operation, Inc. All rights reserved.