home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / CH07 / A071258.TXT < prev    next >
Encoding:
Text File  |  1993-11-16  |  411 b   |  8 lines

  1. First, this function must check whether or not the additional
  2. characters fit into the memory allocated.  If the combined length
  3. of the existing characters and the additional characters is less
  4. than the number of allocated bytes, the function can call standard
  5. function strcat() to concatenate the strings into the allocated
  6. bytes.  The function then updates the value of the data member
  7. "len" and stops.
  8.