| 196 | /* acl_vstring_alloc - create variable-length string */ |
| 197 | |
| 198 | ACL_VSTRING *acl_vstring_alloc(size_t len) |
| 199 | { |
| 200 | return acl_vstring_slice_alloc(NULL, len); |
| 201 | } |
| 202 | |
| 203 | ACL_VSTRING *acl_vstring_slice_alloc(ACL_SLICE_POOL *slice, size_t len) |
| 204 | { |
searching dependent graphs…