#include <makeutilities.h>
Public Methods | |
MakeUtilities () | |
Does nothing. | |
~MakeUtilities () | |
Does nothing. | |
Static Public Methods | |
char* | strchrReverse (const char *buf, char c) |
Searches backwards from the end of the string after the first occurence of c. More... | |
char* | getStrCopy (const char *buf, int extraBytes=0) |
Allocates a copy of buf with new. More... | |
char* | changeExtension (const char *fileName, const char *ext) |
Changes the extension of a filename. More... |
Definition at line 17 of file makeutilities.h.
|
Does nothing.
Definition at line 23 of file makeutilities.h. |
|
Does nothing.
Definition at line 30 of file makeutilities.h. |
|
Changes the extension of a filename.
Definition at line 84 of file makeutilities.h. Referenced by OptionReader::defaults(), File::writeCompilation(), File::writeDot(), and File::writeObjects(). |
|
Allocates a copy of buf with new. Caller must delete [] it!
Definition at line 66 of file makeutilities.h. Referenced by File::File(), changeExtension(), OptionReader::defaults(), File::disectFilename(), OptionReader::expandMacros(), File::findFile(), File::getIncludePath(), and OptionReader::graphExclude(). |
|
Searches backwards from the end of the string after the first occurence of c.
Definition at line 42 of file makeutilities.h. Referenced by changeExtension(), OptionReader::defaults(), File::disectFilename(), File::findFile(), File::stripPath(), and File::warpPath(). |