| 274 | extern unsigned int int2str_buf_index; |
| 275 | extern char int2str_buf[INT2STR_BUF_NO][INT2STR_MAX_LEN]; |
| 276 | static inline unsigned int getstrbufindex(void) { |
| 277 | return ((int2str_buf_index++) % INT2STR_BUF_NO); |
| 278 | } |
| 279 | |
| 280 | static inline char* int2str(uint64_t l, int* len) |
| 281 | { |
no outgoing calls
no test coverage detected