home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / magazine / drdobbs / 1991 / 10 / string / strisrep.cpp < prev    next >
C/C++ Source or Header  |  1991-07-30  |  285b  |  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.