diff options
author | monty@mashka.mysql.fi <> | 2003-01-14 14:28:36 +0200 |
---|---|---|
committer | monty@mashka.mysql.fi <> | 2003-01-14 14:28:36 +0200 |
commit | 7e9b27eaf5e4add82c98fb8cf87ad68ea72de6a8 (patch) | |
tree | 7a63ba29620ada893aa14d1984554e0af0a0deaa /include/m_string.h | |
parent | c9dc5a206bd162b10a3a1a2bebc054cf3c5a6ed0 (diff) | |
download | mariadb-git-7e9b27eaf5e4add82c98fb8cf87ad68ea72de6a8.tar.gz |
Updates for multi-byte character sets
(Note: test 'union' fails, but Sanja promised to fix this)
Diffstat (limited to 'include/m_string.h')
-rw-r--r-- | include/m_string.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/m_string.h b/include/m_string.h index c6943613b1a..fabd6c9bb59 100644 --- a/include/m_string.h +++ b/include/m_string.h @@ -238,6 +238,12 @@ extern ulonglong strtoull(const char *str, char **ptr, int base); #endif #endif +/* my_vsnprintf.c */ + +extern int my_vsnprintf( char *str, size_t n, + const char *format, va_list ap ); +extern int my_snprintf(char* to, size_t n, const char* fmt, ...); + #if defined(__cplusplus) && !defined(OS2) } #endif |