internal power

This commit is contained in:
James Cherry
2020-05-01 09:40:26 -07:00
parent 77d507d0a5
commit 8b65b522fb
2 changed files with 71 additions and 68 deletions
+10
View File
@@ -117,6 +117,16 @@ public:
}
};
class StringLessIf
{
public:
bool operator()(const char *string1,
const char *string2) const
{
return stringLessIf(string1, string2);
}
};
// strdup using new instead of malloc so delete can be used on the strings.
char *
stringCopy(const char *str);