| 274 | } |
| 275 | |
| 276 | neko_buffer api_alloc_buffer_len(int inLen) |
| 277 | { |
| 278 | neko_value str=api_alloc_string_len(0,inLen+1); |
| 279 | char *s=(char *)api_val_string(str); |
| 280 | memset(s,0,inLen+1); |
| 281 | return (neko_buffer)str; |
| 282 | } |
| 283 | |
| 284 | |
| 285 |
nothing calls this directly
no test coverage detected