//! Clib functions you can use on the Arduboy
usecore::ffi::{c_char,c_size_t};extern"C"{#[link_name="strlen"]fnc_strlen(cstr:*const c_char)-> c_size_t;}/// A C function to get the length of a string
pubfnstrlen(cstr:*consti8)->usize{unsafe{c_strlen(cstr)}}