#include <string.h>
Include dependency graph for str.h:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Data Structures | |
| class | Str |
Functions | |
| char * | __StrDup (const char *pStr) |
| char * | __StrDup (char *pStr) |
Variables | |
| char * | g_pStrWork = NULL |
|
|
Definition at line 249 of file pakstuff.cpp. References strcpy(), and strlen(). Referenced by Str::MakeEmpty(), OpenPK3(), Str::operator+=(), Str::operator=(), PakLoadAnyFile(), and Str::Str(). 00250 {
00251 if (pStr)
00252 {
00253 return strcpy(new char[strlen(pStr)+1], pStr);
00254 }
00255 return NULL;
00256 }
|
Here is the call graph for this function:

|
|
Definition at line 240 of file pakstuff.cpp. References strcpy(), and strlen(). 00241 {
00242 if (pStr)
00243 {
00244 return strcpy(new char[strlen(pStr)+1], pStr);
00245 }
00246 return NULL;
00247 }
|
Here is the call graph for this function:

|
|
Definition at line 36 of file str.h. Referenced by Str::Left(), Str::Right(), and Str::~Str(). |
1.3.9.1