diff options
author | Pixel <Pixel> | 2001-11-28 19:24:09 +0000 |
---|---|---|
committer | Pixel <Pixel> | 2001-11-28 19:24:09 +0000 |
commit | 9f2ad93e4dd13446a9df2304f1f74c4272739bea (patch) | |
tree | cc6437645abc05ecb8e21d3f5efdefbc5a89da18 /include | |
parent | 0ddaa5127bf155ffb93f9da13381ad176b43a295 (diff) |
String enhance...
Diffstat (limited to 'include')
-rw-r--r-- | include/String.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/String.h b/include/String.h index b614d8d..fbeb9fc 100644 --- a/include/String.h +++ b/include/String.h @@ -50,7 +50,8 @@ class String : public Base { String(unsigned long long); String(double); ~String(); - const char * set(char *, ...); + const char * set(const char *, ...); + const char * set(const String &, ...); const char * to_charp(size_t = 0, ssize_t = -1) const; String extract(size_t = 0, ssize_t = -1) const; char * strdup(size_t = 0, ssize_t = -1) const; |