diff options
Diffstat (limited to 'common/rfb/util.h')
-rw-r--r-- | common/rfb/util.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/common/rfb/util.h b/common/rfb/util.h index 1e59de62..34811e3f 100644 --- a/common/rfb/util.h +++ b/common/rfb/util.h @@ -35,12 +35,12 @@ struct timeval; namespace rfb { // Formats according to printf(), with a dynamic allocation - std::string strFormat(const char *fmt, ...) + std::string format(const char *fmt, ...) __attribute__((__format__ (__printf__, 1, 2))); // Splits a string with the specified delimiter - std::vector<std::string> strSplit(const char* src, - const char delimiter); + std::vector<std::string> split(const char* src, + const char delimiter); // Conversion to and from a hex string |