janet-lang / janet

A dynamic language and bytecode vm
https://janet-lang.org
MIT License
3.38k stars 217 forks source link

Use libc strlen in janet_buffer_push_cstring #1314

Closed williewillus closed 8 months ago

williewillus commented 9 months ago

Use libc strlen in janet_buffer_push_cstring

Platform libc's often contains optimized assembly implementations of strlen, so take advantage of them here instead of doing a naive count.