Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
334 B

  1. //
  2. // Copyright (c) 1997-2001 Microsoft Corporation, All Rights Reserved
  3. //
  4. #ifndef NEW_STRING_H
  5. #define NEW_STRING_H
  6. // Return a new string with the same contents as the argument
  7. char *NewString (const char * const s);
  8. // Return a new uninitialized string of the specified length
  9. char *NewString(const int len);
  10. #endif