| 688 | |
| 689 | inline void* alloc(size_t size) { return alloc_root(mem_root,size); } |
| 690 | inline void* calloc(size_t size) |
| 691 | { |
| 692 | void *ptr; |
| 693 | if ((ptr=alloc_root(mem_root,size))) |
| 694 | memset(ptr, 0, size); |
| 695 | return ptr; |
| 696 | } |
| 697 | inline char *strdup(const char *str) |
| 698 | { return strdup_root(mem_root,str); } |
| 699 | inline char *strmake(const char *str, size_t size) |
no test coverage detected