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
12 lines
334 B
//
|
|
|
|
// Copyright (c) 1997-2001 Microsoft Corporation, All Rights Reserved
|
|
//
|
|
#ifndef NEW_STRING_H
|
|
#define NEW_STRING_H
|
|
|
|
// Return a new string with the same contents as the argument
|
|
char *NewString (const char * const s);
|
|
// Return a new uninitialized string of the specified length
|
|
char *NewString(const int len);
|
|
#endif
|