| 1573 | } |
| 1574 | |
| 1575 | char *stringFromLongLong(long long value) { |
| 1576 | char buf[32]; |
| 1577 | int len; |
| 1578 | char *s; |
| 1579 | |
| 1580 | len = snprintf(buf,sizeof(buf),"%lld",value); |
| 1581 | s = zmalloc(len+1); |
| 1582 | memcpy(s, buf, len); |
| 1583 | s[len] = '\0'; |
| 1584 | return s; |
| 1585 | } |
| 1586 | |
| 1587 | dictType BenchmarkDictType = { |
| 1588 | hashCallback, |