Move intdup to qthelper

Signed-off-by: Miika Turkia <miika.turkia@gmail.com>
This commit is contained in:
Miika Turkia 2017-05-07 09:41:27 +03:00
parent 0d36b6e4e8
commit ab1813a445
4 changed files with 12 additions and 18 deletions

View file

@ -1509,3 +1509,12 @@ QString getUUID()
uuidString.replace("{", "").replace("}", "");
return uuidString;
}
char *intdup(int index)
{
char tmpbuf[21];
snprintf(tmpbuf, sizeof(tmpbuf) - 2, "%d", index);
tmpbuf[20] = 0;
return strdup(tmpbuf);
}