diff options
Diffstat (limited to 'strings/llstr.c')
-rw-r--r-- | strings/llstr.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/strings/llstr.c b/strings/llstr.c index 12aea63e014..678f8b05f39 100644 --- a/strings/llstr.c +++ b/strings/llstr.c @@ -32,3 +32,10 @@ char *llstr(longlong value,char *buff) longlong10_to_str(value,buff,-10); return buff; } + +char *ullstr(longlong value,char *buff) +{ + longlong10_to_str(value,buff,10); + return buff; +} + |