home *** CD-ROM | disk | FTP | other *** search
/ Computer Select (Limited Edition) / Computer Select.iso / dobbs / v16n10 / string.exe / STRISREP.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1991-07-30  |  285 b   |  18 lines

  1. #include <string.h>
  2. #include <ctype.h>
  3. #include <errno.h>
  4. #include <string.hpp>
  5.  
  6. srep::srep(int n, const char *s)
  7. {
  8.     refs = 0;
  9.     length = n;
  10.     if (s)
  11.         memmove(body,s,n);
  12. }
  13.  
  14. void *srep::operator new(size_t cs, size_t us)
  15. {
  16.     return new char[cs+us-1];
  17. }
  18.